function winopen(pic,wide,high)
{
	window.status='Loading.....'
	width=wide+20
	height=high+25
	settings='width='+width+',height='+height+',top=5,left=5'
	contents='<html><title>'+pic+'</title> <body background="images/water.jpg"><img src="images/' + pic + '.jpg"></body></html>'

	newwindow=window.open("",pic,settings);
	newwindow.document.write(contents);
	newwindow.document.close();

	window.status=''
}

   function getmedate()
  { 
    var dd = new Date();
	//now = dd.getDate() + "/";
	//now += (dd.getMonth() + 1) + "/";
	//now += dd.getYear()
    var Inside= dd.toLocaleDateString()
    document.getElementById('clock').innerHTML = Inside
  }

	function texton(tXt,tp,lt)
	{
	document.getElementById(tXt).className = "vis";
	if (navigator.appName=="Netscape")
	{
		tp=tp-2
		lt=lt-2
	}
	document.getElementById(tXt).style.top = tp + "px"
	document.getElementById(tXt).style.left = lt + "px"
	}
function textoff(tXt)
	{
	document.getElementById(tXt).className = "nvis";
	}