	function getdate() {
		var dDate = new Date();
		var nMonth;
		var cMonth;
		var cStr;
		nMonth = dDate.getMonth();
		switch (nMonth) {
			case 0 : cMonth = "January" ; 
						break;
			case 1 : cMonth = "Febuary" ;
						break;
			case 2 : cMonth = "March" ;
						break;
			case 3 : cMonth = "April" ;
						break;
			case 4 : cMonth = "May" ;
						break;
			case 5 : cMonth = "June" ;
						break;
			case 6 : cMonth = "July" ; 
						break;
			case 7 : cMonth = "August" ;
						break;
			case 8 : cMonth = "September" ;
						break;
			case 9 : cMonth = "October" ;
						break;
			case 10 : cMonth = "November" ;
						break;
			default : cMonth = "December" ;
		}
		cStr = cMonth + ' ' + dDate.getDate() + ', ' +dDate.getYear() ;
		return cStr ;
	}

	function onMenu(obj,color) {
		obj.style.background = color ;
		obj.style.cursor = "hand" ;
	}

	function outMenu(obj, color) {
		obj.style.background = color ;
		obj.style.cursor = "default" ;
	}
	
	function clickMenu(strURL) {
		window.location = strURL ;
	}

	
