|
");
myWin.document.close();
*/
}
function f_Validate()
{
var Cont = 0;
aform=document.forms[0];
if (aform.associado.value == "")
{
alert("Digite seu Codigo.");
aform.associado.focus();
Cont = 1;
return(false);
}
if(isNaN(aform.associado.value) == true && aform.associado.value != "")
{
alert("Este campo só pode conter números");
aform.associado.focus();
}
if (aform.senha.value == "")
{
alert("Digite sua senha.");
aform.senha.focus();
Cont = 1;
return(false);
}
if(Cont == 0)
{
pop();
}
return(true);
}
var message="Direitos reservados - ACISA";
function click(e)
{
if (document.all)
{
if (event.button == 2)
{
alert(message);
return false;
}
}
if (document.layers)
{
if (e.which == 3)
{
alert(message);
return false;
}
}
}
if (document.layers)
{
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->
|
|