function golargeimage(oog,eeg,ig,imagealt)
{
var winpops=window.open("goimage.php?imagealt=" + imagealt + "&image=" + oog + "&width=" + eeg + "&height=" +ig,"","resizable=1,width=100,height=100")

return false;
}

/************ CLOCK **************/
    

	function displayclock() { 
	  var entime = new Date();
	 

    var hours = entime.getHours();
    var min = entime.getMinutes();
    
  
    var Time = ((hours < 10) ? "0" : "") + hours; 
    Time += ((min < 10) ? ":0" : ":") + min; 
    
    
    document.getElementById('clockdiv').innerHTML = Time; 
    setTimeout("displayclock()",60000); 
  } 

