// JavaScript Document
function popupWindow(url)
{  
	window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=500,height=400,screenX=150,screenY=150,top=25,left=50')
}
function popupImage(url)
{  
	window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=750,height=500,screenX=150,screenY=150,top=25,left=50')
}
function popup(url)
{  
	window.open(url,'popup','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=650,height=600,screenX=150,screenY=150,top=25,left=50')
}
versionNav = navigator.appVersion;
function AfficheHomePage()
{
	if (versionNav.indexOf("MSIE 5") > -1 || versionNav.indexOf("MSIE 6") > -1)
	{
		document.write('<A class="link_texto" HREF="#" onClick="HomePage(this);return(false);">P&aacute;gina de Inicio</A><BR>');
	}
}
function HomePage(obj)
{
	obj.style.behavior='url(#default#homepage)';
	obj.setHomePage('http://www.ccpaqp.org.pe/');
}
function fechaActual()
{
	var hoy = new Date();
	hoy.getDate();
	//var tiempo = new Date();
	var hora, cad=" ";
	//var hora, cad="son las ";
	with (hoy)
	{
		hora = getHours();
		cad += hora + ":" + getMinutes()+":"+getSeconds();
	}
	var meses = new Array("Enero", "Febrero","Marzo","Abril",
	"Mayo","Junio", "Julio", "Agosto", "Septiembre", "Octubre",
	"Noviembre", "Diciembre");
	var dias = new Array("Domingo","Lunes", "Martes","Miercoles","Jueves",
	"Viernes","Sabado");
	var nombredia = dias[hoy.getDay()];
	var dia = hoy.getDate();
	var mes = meses[hoy.getMonth()];
	var agno = hoy.getYear();
	//return (nombredia + " " + dia +" de "+ mes +" del "+ agno + ",  " + cad);
	return (nombredia + " " + dia +" "+ mes +" del "+ agno);

}