function flipVis(element)
{
	
	if(document.getElementById(element).style.visibility == "hidden")
	{
	  document.getElementById(element).style.visibility = "visible";
	  document.getElementById(element).style.display = "block"; 
  }
  else
  {
	  document.getElementById(element).style.visibility = "hidden";
	 document.getElementById(element).style.display = "none"; 
  }
}

/*
Upper Corner Live clock script credit: JavaScript Kit (www.javascriptkit.com)
More free scripts here!
*/

function clock(){
if (!document.layers&&!document.all&&!document.getElementById)
return

 var Digital=new Date()
 var hours=Digital.getHours()
 var minutes=Digital.getMinutes()
 var seconds=Digital.getSeconds()

 if (hours<=9)
 hours="0"+hours
 if (minutes<=9)
 minutes="0"+minutes
 if (seconds<=9)
 seconds="0"+seconds
//change font size here to your desire
myclock="<b>"+hours+":"+minutes+":" +seconds+"hrs</b>"
if (document.layers){
document.layers.liveclock.document.write(myclock)
document.layers.liveclock.document.close()
}
else if (document.all)
liveclock.innerHTML=myclock
else if (document.getElementById)
document.getElementById("liveclock").innerHTML=myclock
setTimeout("clock()",1000)
 }
window.onload=clock
