// JavaScript Document
	browserName = navigator.appName; 
	browserVer = parseInt(navigator.appVersion); 
	if (browserName == "Netscape" && browserVer >= 3) version = "n3"; 
	else if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) version = "e4"; 
	else version = "n2";
	if (version == "n3" || version == "e4") 
	{
		var toc1on = new Image; toc1on.src = "images/button_go2.gif";
		var toc2on = new Image; toc2on.src = "images/button_go2.gif";
		var toc3on = new Image; toc3on.src = "images/button_go2.gif";
		var toc4on = new Image; toc4on.src = "images/button_go2.gif";
		var toc5on = new Image; toc5on.src = "images/button_go2.gif";
		
		var toc1off = new Image; toc1off.src = "Images/button_go.gif";
		var toc2off = new Image; toc2off.src = "Images/button_go.gif";
		var toc3off = new Image; toc3off.src = "Images/button_go.gif";
		var toc4off = new Image; toc4off.src = "Images/button_go.gif";
		var toc5off = new Image; toc5off.src = "Images/button_go.gif";

	}
	function img_act(imgName) {
		if (version == "n3" || version == "e4") {
		imgOn = eval(imgName + "on.src");
		document[imgName].src = imgOn; } 
	}
	function img_inact(imgName) {
		if (version == "n3" || version == "e4") {
		imgOff = eval(imgName + "off.src");
		document [imgName].src = imgOff; } 
	}	
	
	
// Date Function...	
	var mydate=new Date()
	var year=mydate.getYear()
	if (year < 1000)
	year+=1900
	var day=mydate.getDay()
	var month=mydate.getMonth()+1
	if (month<10)
	month="0"+month
	var daym=mydate.getDate()
	if (daym<10)
	daym="0"+daym