function shows() {
var lay = "js";
document.getElementById(lay).style.position = '';
document.getElementById(lay).style.visibility = 'visible';
return false;
}
function hides() {
var lay = "js";
document.getElementById(lay).style.position = 'absolute';
document.getElementById(lay).style.visibility = 'hidden';
return false;
}
function reload_image() {
var lay = "image1";
document.getElementById(lay).src = '/cod/count.php?n='+Math.floor(Math.random()*10000);
return false;
}



function keyoff(pass) {

if(pass!='') {
var password = document.getElementById(pass).value;
if(password.length<3) {
alert("Вы не заполнили поле Пароль.");
return false;
}
}

document.forms.login.elements.submit.value="Пожалуйста подождите...";
document.forms.login.elements.submit.disabled="true";
return true;
}