function NewWin(subor,nazov) {
  Win = window.open(subor,nazov,
    "left=10,top=10,width=540,height=540,menubar=no,directories=no,"+
    "toolbar=no,status=no,scrollbars=yes,resizable=no");
}

function MailWin(id) {
  Win = window.open("info_mail.php?n_id="+id,"MailWin",
    "left=50,top=50,width=250,height=180,menubar=no,directories=no,"+
    "toolbar=no,status=no,scrollbars=no,resizable=no");
}

function IntWin(id) {
  Win = window.open("info_int.php?n_id="+id,"IntWin",
    "left=50,top=50,width=350,height=320,menubar=no,directories=no,"+
    "toolbar=no,status=no,scrollbars=no,resizable=no");
}

function open_map(firma) {
	mapWindow = window.open("http://www.supernavigator.sk/clients/mapa.php?firmID="+firma+"&ref=http://www.maxireal.sk","mapa","toolbar=0,location=0,scrollbars=0,width=494,height=418,resizable=no");
}

function CheckForm_sluzby() {
  var text = "";
  
  if(document.sluzby.meno.value == "") text = text+"- Meno\n";
  if(document.sluzby.telefon.value == "") text = text+"- Telefón\n";
  
  if(text != "") {
    text = "Tieto údaje sú povinné:\n=======================\n"+text+"=======================\nProsím vyplňte všetky povinné údaje.";
    alert(text);
    return false;
  } else return true;
}

function CheckForm_newsletter() {
  var text = "";
  
  if(document.newsletter.meno.value == "") text = text+"- Meno\n";
  if(document.newsletter.email.value == "") text = text+"- E-Mail\n";
  if(document.newsletter.heslo.value == "") text = text+"- Heslo\n";
  if(document.newsletter.transakcia.value == "") text = text+"- Typ obchodu\n";
  if(document.newsletter.typ.value == "") text = text+"- Typ\n";
  
  if(text != "") {
    text = "Tieto údaje sú povinné:\n=======================\n"+text+"=======================\nProsím vyplňte všetky povinné údaje.";
    alert(text);
    return false;
  } else return true;
}
