/*open a small window for text*/
function OpenWindow(URL,Winwidth,Winheight){
	//Winheight = "500"
	day = new Date();
	id = day.getTime();
	var windowprops = "toolbar=0,location=0,directories=0,status=0, " +"menubar=0,scrollbars=1,resizable=1,width=" + Winwidth + ",height=" +Winheight+ ",left=40,top=10";
	eval("page" + id + " = window.open(URL, '" + id + "', windowprops);");
}


function navypop()
{
  var generator=window.open('','name','height=200,width=500');
  
  generator.document.write('<html><head><title>U.S. Navy Time</title>');
  generator.document.write('<link rel="stylesheet" href="style.css">');
  generator.document.write('</head><body>');
  generator.document.write('<p>The time displayed below is the current U.S. Navy Time. Please refresh it to view up to date time.</p>');
  generator.document.write('<p><img src="http://tycho.usno.navy.mil/cgi-bin/xbmclock.xbm?zone=EST"></p>');
  generator.document.write('<p><a href="javascript:self.close()">Close</a></p>');
  generator.document.write('</body></html>');
  generator.document.close();
}


