﻿function validiraiLForma() {
if(document.all) {
var _potrebitel=document.all.potrebitelskoime;
var _parola=document.all.parola;
} else if (!document.all && document.getElementById) {
var _potrebitel=document.getElementById("potrebitelskoime");
var _parola=document.getElementById("parola");
}
if(_potrebitel.value=="") { alert("Моля, въведете Вашето потребителско име"); _potrebitel.focus(); return false; }
if(_parola.value=="") { alert("Моля, въведете Вашата парола"); _parola.focus(); return false; }
return true;
}

function validiraiPLForma() {
if(document.all) {
var _potrebitel=document.all.potrebitelsko_ime;
var _parola=document.all.parolata;
} else if (!document.all && document.getElementById) {
var _potrebitel=document.getElementById("potrebitelsko_ime");
var _parola=document.getElementById("parolata");
}
if(_potrebitel.value=="") { alert("Моля, въведете Вашето потребителско име"); _potrebitel.focus(); return false; }
if(_parola.value=="") { alert("Моля, въведете Вашата парола"); _parola.focus(); return false; }
return true;
}