function mensaje (cadena)
{
	if (cadena != '')
	{
			alert (cadena);
	}
}

function abrir_link (lnk)
{
	window.location = "" + lnk + "";
}


function obtener_hora()
{
	var fecha = new Date();
	var horas = fecha.getHours();
	var minutos = fecha.getMinutes();
	var segundos = fecha.getSeconds();
	
	var dn="AM";
	if (horas >= 12)
		dn="PM";
		
	if (horas > 12)
		horas=horas-12;

	if (horas == 0)
		horas = 12;
		
	if (minutos <= 9)
		minutos = "0" + minutos;
		
	if (segundos <= 9)
		segundos= "0" + segundos;
		


	var chora = " " + horas + ":" + minutos + ":" +segundos + " " + dn;

	if (document.all)
		document.all.reloj.innerHTML=chora;		
	else if (document.getElementById)
		document.getElementById("reloj").innerHTML=chora;
	//else
	//document.write(chora)
}

function iniciar_reloj ()
{
	if (document.all || document.getElementById)
		setInterval("obtener_hora()",1000);
}

