<!--

function NoRightClick(evnt) {
if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
if (evnt.which == 3){
alert("Nescape no puede realizar la funcion solicitada ");
return false;
}
}
else
if (event.button==2)
alert(" Explorer no puede realizar la funcion solicitada");
}



function pass(pal1,pal2) { 
window.location="../usuarios/"+pal1+"/"+pal2+".htm" 
} 


function pass1 () {
document.write ("<FORM>");
document.write ("NOMBRE DE USUARIO");
document.write ("<br>");
document.write ("<INPUT TYPE='text' NAME='pal1' SIZE=20 VALUE=''>");
document.write ("<br>");
document.write ("CONTRASEŅA");
document.write ("<br>");
document.write ("<INPUT TYPE='password' NAME='pal2' SIZE=20 VALUE=''>");
document.write ("<br>");
document.write ("<INPUT TYPE='button' VALUE='Acceder' onClick='pass(this.form.pal1.value,this.form.pal2.value)'>");
document.write ("<FORM>");
	}

function dia_semana (d1,d2,d3,d4,d5,d6,d7) {
this[0]=d1;
this[1]=d2;
this[2]=d3;
this[3]=d4;
this[4]=d5;
this[5]=d6;
this[6]=d7;
	}

function mes_ano (d1,d2,d3,d4,d5,d6,d7,d8,d9,d10,d11,d12) {
this[0]=d1;
this[1]=d2;
this[2]=d3;
this[3]=d4;
this[4]=d5;
this[5]=d6;
this[6]=d7;
this[7]=d8;
this[8]=d9;
this[9]=d10;
this[10]=d11;
this[11]=d12;
	}

semana= new dia_semana ("Domingo","Lunes","Martes","Miercoles","Jueves","Viernes","Sabado");

mes=new mes_ano ("enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre");

var today= new Date;
diahoy = today.getDay();
fechahoy = today.getDate();
meshoy = today.getMonth();
horahoy = today.getHours();
minutohoy = today.getMinutes();
ano = today.getYear();

function dia () {
document.write ('Escobar, ');
document.write (semana[diahoy]+' '+fechahoy);
document.write (' de '+mes[meshoy]+' de '+ano +',');

if (minutohoy<10) {minutohoy="0"+minutohoy}
document.write (' son las '+horahoy+':'+minutohoy+' hs.'); 
	}
function d()
{document.write ('Sepa que hacer hoy, ');
document.write (semana[diahoy]+' '+fechahoy);
document.write (' de '+mes[meshoy]+' de '+ano +',');
}
//-->