function show()
{
  if (document.getElementById("blink1"))	show1();
	if (document.getElementById("blink2")) show2();
	if (document.getElementById("blink3")) show3();
	if (document.getElementById("blink4")) show4();
	if (document.getElementById("blink5")) show5();
}
function show1()
{
	if (document.getElementById)
	document.getElementById("blink1").style.visibility = "visible";
	setTimeout("hide1()", 3400);
}
function show2()
{
	if (document.getElementById)
	document.getElementById("blink2").style.visibility = "visible";
	setTimeout("hide2()", 4200);
}
function show3()
{
	if (document.getElementById)
	document.getElementById("blink3").style.visibility = "visible";
	setTimeout("hide3()", 2000);
}
function show4()
{
	if (document.getElementById)
	document.getElementById("blink4").style.visibility = "visible";
	setTimeout("hide4()", 5200);
}
function show5()
{
	if (document.getElementById)
	document.getElementById("blink5").style.visibility = "visible";
	setTimeout("hide5()", 2400);
}
// blink "off" state
function hide1()
{
	if (document.getElementById)
	document.getElementById("blink1").style.visibility = "hidden";
	setTimeout("show1()", 850);
}

function showhide(id,id2,text,text2){
	if(document.getElementById(id).style.display=="none"){
		document.getElementById(id).style.display="";
		document.getElementById(id2).innerHTML = text;
	} else {
		document.getElementById(id).style.display="none";
		document.getElementById(id2).innerHTML = text2;
	}
	return true;
}


function hide2()
{
	if (document.getElementById)
	document.getElementById("blink2").style.visibility = "hidden";
	setTimeout("show2()", 550);
}
function hide3()
{
	if (document.getElementById)
	document.getElementById("blink3").style.visibility = "hidden";
	setTimeout("show3()", 750);
}
function hide4()
{
	if (document.getElementById)
	document.getElementById("blink4").style.visibility = "hidden";
	setTimeout("show4()", 650);
}
function hide5()
{
	if (document.getElementById)
	document.getElementById("blink5").style.visibility = "hidden";
	setTimeout("show5()", 850);
}


