//date and time funciton
function showtimedate(){
	var theday="";
	var themonth="";
	var theweekday="";
	var theyear="";
	var ampm="";
	var theminute="";
	var thehour="";
	var newtime="";
	var newdate="";
	var thedate="";

	newdate = new Date();
	thedate = new Date();
	var myzone = newdate.getTimezoneOffset();
	newtime=newdate.getTime();

	theday = thedate.getDay();
	themonth = thedate.getMonth();
	theweekday= thedate.getDate();
	theyear= thedate.getFullYear();

	
	thehour = thedate.getHours();
	if (thehour >= 12) {
		thehour = (thehour == 12) ? 12 : thehour - 12; ampm = " PM";
	}else{
		thehour = (thehour == 0) ? 12 : thehour; ampm = " AM";
	}

	theminute = thedate.getMinutes();
	
	if (theminute < 10){
		theminute = ":0" + theminute;
	}
	else {
		theminute = ":" + theminute;
	};

	var thedayword = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
	var themonthword = new Array("January ","February ","March ","April ","May ","June ","July ","August ","September ", "October ","November ","December ");
	
	var displaydate = (thedayword[theday] +" | " + themonthword[themonth] +" "+theweekday+", "+theyear);
	var displaytime = (thedayword[theday] +" | " + themonthword[themonth] +" "+theweekday+", "+theyear+" "+thehour + theminute+" "+ampm);

	document.write(displaytime);
	//document.write(displaydate);
	//-->
}


