// var timerID = null;// var timerRunning = false;function getdate() {	var months=new Array(13);	months[1]="Jan";	months[2]="Feb";	months[3]="Mar";	months[4]="Apr";	months[5]="May";	months[6]="June";	months[7]="July";	months[8]="Aug";	months[9]="Sept";	months[10]="Oct";	months[11]="Nov";	months[12]="Dec";	time=new Date();	lmonth=months[time.getMonth() + 1];	date=time.getDate();	year=time.getYear();	hours = time.getHours();	if (year < 2000)  {   	   year = year + 1900; 	}	return (date + " " +  lmonth + " " + year);}function gethours() {	time=new Date();	 hours = time.getHours();	// alert (hours);		if (hours > 17) {		return ("&#161;Buenas noches!");	}	else if (hours > 11) {	 	return ("&#161;Buenas tardes!");	 }	 else { // < 12	 	return ("&#161;Buenos d&iacute;as!")	 }}// ebe 2002-10-11: not usedfunction stopclock (){	if(timerRunning)	clearTimeout(timerID);	timerRunning = false;}function showtime () {	var now = new Date();	var month = now.get	var hours = now.getHours();	var minutes = now.getMinutes();	var seconds = now.getSeconds()	var timeValue = "" + ((hours >12) ? hours -12 :hours)	if (timeValue == "0") timeValue = 12;	timeValue += ((minutes < 10) ? ":0" : ":") + minutes	timeValue += ((seconds < 10) ? ":0" : ":") + seconds	timeValue += (hours >= 12) ? " P.M." : " A.M."	document.clock.face.value = timeValue;	timerID = setTimeout("showtime()",1000);	timerRunning = true;}function startclock() {	getdate();	stopclock();	showtime();}