//configure the below 2 variables to set the width/background color of the ticker
var tickerwidth='100%'
var tickerbgcolor=''
//configure the below variable to determine the delay between ticking of messages (in miliseconds
var tickdelay=2000

////Do not edit pass this line////////////////

var currentmessage=0

function changetickercontent()
{
if (document.layers){
document.tickernsmain.document.tickernssub.document.write(tickercontents[currentmessage])
document.tickernsmain.document.tickernssub.document.close()
}
else if (document.all)
tickerie.innerHTML=tickercontents[currentmessage]

if (currentmessage==tickercontents.length-1) currentmessage=0
else currentmessage++
setTimeout("changetickercontent()",tickdelay)
}

function start_ticking(){
if (document.layers)
document.tickernsmain.visibility="show"
changetickercontent()
}


function showhide(id)
{ 
if (document.getElementById)
	{ 
	obj = document.getElementById(id); 
	if (obj.style.display == "none")
		{ 
		obj.style.display = "";
		} 
	else 
		{ 
		obj.style.display = "none"; 
		} 
	} 
} 



function ShowPic(sPicURL) 
            { 
window.open("showpic.htm?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200,left=0, top='0");
			}