<!-- 
var submitflag = 0;
var submitalert = 'The action is NOT allowed at this point !?! \nPlease, be patient!! Count to 10.'
function us(ro, qu, au){
 ns=prompt(qu, au);
 if (ns==null) return;
 window.document.location=ro + "?ns=" + escape(ns);};
function verifyBill(bfrm){
 var pid = bfrm.buName.value;
 if(pid.length < 1) {
  alert('Ups ..... Username ?');
  bfrm.buName.focus();
  return false;}
 for (var i = 0; i < pid.length; i++) {
  if(('0123456789-').indexOf(pid.charAt(i)) == -1) {
   alert('Ups ..... Username ?!');
   bfrm.buName.focus();
   return false;}}
 if(bfrm.buPass.value.length < 4 || bfrm.buPass.value.length > 10) {
  alert('Ups ..... Lozinka? [4 - 10]');
  bfrm.buPass.focus();
  return false;}
return true;}
function showPop(){
 var width=640; var height=380;
 var params="top="+(screen.height-height)/2+", left="+(screen.width-width)/2+", width="+width+", height="+height+", resizable=0, scrollbars=0";
 w=window.open("../sources/epPromo.html", "epPic", params);
 if(w.opener == null) w.opener=self;
 w.focus();}
function mOver(cobj){
 cobj.style.border='1px solid #223380';
}
function mOut(cobj){
 cobj.style.border='1px solid #CCCCCC';
}
//-->
