/*
Drop Down World Clock- By JavaScript Kit (http://www.javascriptkit.com)
Portions of code by Kurt @ http://www.btinternet.com/~kurt.grigg/javascript
This credit notice must stay intact
*/
/*
	RGM
	Agregar en pagina donde se ponga:
	- Esta linea marca donde aparece el reloj
	<span id="worldclock"></span>
	 - Ejecutar la funcion para que inicie el reloj
	 WorldClock();
*/

zone = 0;
isitlocal = true;
ampm = '';

function updateclock(z){
	zone=z.options[z.selectedIndex].value;
	isitlocal = (z.options[0].selected) ? true : false;
}

function WorldClock(){
	now = new Date();	
	ofst = now.getTimezoneOffset()/60;
	secs = now.getSeconds();
	sec=-1.57+Math.PI*secs/30;
	mins=now.getMinutes();
	min=-1.57+Math.PI*mins/30;
	hr=(isitlocal)?now.getHours():(now.getHours() + parseInt(ofst)) + parseInt(zone);
	hrs=-1.575+Math.PI*hr/6+Math.PI*parseInt(now.getMinutes())/360;

	if (hr < 0) hr+=24;
	if (hr > 23) hr-=24;

	ampm = (hr > 11)?"PM":"AM";
	statusampm = ampm.toLowerCase();
	
	hr2 = hr;
	if (hr2 == 0) hr2=12;

	(hr2 < 13) ? hr2 : hr2 %= 12;

	if (hr2<10) hr2="0"+hr2
	
	var finaltime=hr2+':'+((mins < 10)?"0"+mins:mins)+':'+((secs < 10)?"0"+secs:secs)+' '+statusampm;
	
	if (document.all)
		worldclock.innerHTML = finaltime
	else if (document.getElementById)
		document.getElementById("worldclock").innerHTML = finaltime
	else if (document.layers){
		document.worldclockns.document.worldclockns2.document.write(finaltime)
		document.worldclockns.document.worldclockns2.document.close()
	}
	
	
	setTimeout('WorldClock()', 1000);
}

function PrintDate(){
	var now = new Date();

	var finaldate = now.getDate() + ' de ' + (getMonth(now.getMonth() + 1)) + ' de ' + now.getFullYear();

	if (document.all)
		printdate.innerHTML = finaldate;
	else if (document.getElementById)
		document.getElementById("printdate").innerHTML = finaldate;

	setTimeout('PrintDate()', 1000);
}

function getMonth(month){

	var strMonth = '';

	if (month == 1){
		strMonth = 'Enero';
	} else if (month == 2){
		strMonth = 'Febrero';
	} else if (month == 3){
		strMonth = 'Marzo';
	} else if (month == 4){
		strMonth = 'Abril';
	} else if (month == 5){
		strMonth = 'Mayo';
	} else if (month == 6){
		strMonth = 'Junio';
	} else if (month == 7){
		strMonth = 'Julio';
	} else if (month == 8){
		strMonth = 'Agosto';
	} else if (month == 9){
		strMonth = 'Septiembre';
	} else if (month == 10){
		strMonth = 'Octubre';
	} else if (month == 11){
		strMonth = 'Noviembre';
	} else if (month == 12){
		strMonth = 'Diciembre';
	}

	return strMonth;
}