function print_popup(URL,WIDTH,HEIGHT) {
WIDTH = parseInt(WIDTH);
HEIGHT = parseInt(HEIGHT);

var TOP = (screen.height - HEIGHT)/2;
var LEFT = (screen.width - WIDTH)/2;

if (TOP < 1 || TOP > screen.height) TOP = 0;
if (LEFT < 1 || LEFT > screen.width) LEFT = 0;

SETTINGS = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,top=" + TOP + ",left=" + LEFT + ",width=" + WIDTH + ",height=" +HEIGHT;
window.open(URL, 'pop_up',SETTINGS);
}
 
 
 
 
 
 /*funkce odesli_mail se nepoužívá*/
 function odesli_mail(formular,jazyk) {
   okenko = window.open("","okno_status_email","width=400,height=200,menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no");
   with (okenko) {
     document.write("<html><head><title>ATLANTIS - reality</title>");
     document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1250\">");
     document.write("<link rel=\"stylesheet\" href=\"./css/layout.css\" type=\"text/css\">");
     document.write("<link rel=\"stylesheet\" href=\"./css/styly.css\" type=\"text/css\">");
     document.write("</head><body class=\"bgwhite\"><h4>");
     if ( jazyk=='cz' ) {
       document.write('Čekejte prosím, e-mail se odesílá...');
     }
     else {
       document.write('Wait for a minute please, e-mail is sended...');
     }
     document.write("</h4></body></html>");
   }
   if ( formular=='seznam' ) {
     document.getElementById('seznam_detail_form').submit();
   }
   else {
     document.getElementById('zajem_form').submit();
   }
}

function zobraz_foto(query_string,sirka,vyska) {
  //okno_fotka = window.open("nabidka_foto.php?" + query_string + "&part=foto","okno_fotografie","width=" + (sirka) + ",height=" + (vyska) + ",menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no");
  okno_fotka = window.open("nabidka_foto.php?" + query_string + "&part=foto","","width=" + (sirka) + ",height=" + (vyska) + ",menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no");
  okno_fotka.focus();
}


function bigfoto(id,akce,vyska,sirka) {

  nahled_top = document.getElementById("smallfoto_"+id).offsetTop;
  nahled_left = document.getElementById("smallfoto_"+id).offsetLeft;

  if ( nahled_left + sirka > screen.availWidth ) {
    nahled_left = screen.availWidth - sirka - 40;
  }

  document.getElementById("bigfoto_"+id).style.top = (nahled_top - vyska - 15)+"px";
  document.getElementById("bigfoto_"+id).style.left = nahled_left+"px";

  
  if ( akce ) {
    document.getElementById("bigfoto_"+id).style.display = "block";
  }
  else {
    document.getElementById("bigfoto_"+id).style.display = "none";
  }
}

