// JavaScript Document
// Feel multimedia studio Kupres

	function ajaxLoad(element,sadrzaj) {
	document.getElementById(element).innerHTML ="<img src='_img/load.gif' align=center style='border-style:none;' />";
	xmlhttp=null;
if (window.XMLHttpRequest)
  {// novi browseri (IE7)
  xmlhttp=new XMLHttpRequest();
  }
     else if (window.ActiveXObject)
            {// code za IE5 i IE6
             xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
             }
        if(element=="login") {
		xmlhttp.open("GET", sadrzaj, true); //ako se logira ne salji podatak o vremenu
		}
		       else { 
			   xmlhttp.open("GET", sadrzaj + "?tm=" + new Date().getTime(), true); //dodao vrijeme zbog ie cache problema
			   }
		xmlhttp.onreadystatechange=function() {
			if (xmlhttp.readyState == 4 && xmlhttp.status==200) {
				
				document.getElementById(element).innerHTML = xmlhttp.responseText;

			}
		}
		      if(xmlhttp==null) {
                  alert("Vas pretrazivac ne podrzava ajax tehnologiju. Vrijeme je da ga nadogradite!");
                   }
		xmlhttp.send(null); //ie glupost

	}
function prikazi_sliku(ime) {
window.open("prikazi_foto.php?foto="+ime.src,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=10, height=10");
}
function zatvorifoto() {
var fotopanel=document.getElementById("fotopanel");
fotopanel.style.display="none";
document.getElementById("mrak").style.display="none";
}

function printaj() {
var sad_p=document.getElementById("sadrzaj").innerHTML;
document.write(sad_p+'<hr>www.kupresholidays.com');
window.print(this);
}
function admin() {
document.getElementById("master").style.display="none";
document.getElementById("login").style.display="inline";
}
function zatvorilogin() {
document.getElementById("master").style.display="";
document.getElementById("login").style.display="none";
}
function login() { 
pw=document.getElementById("unos").value;
ajaxLoad("login","login.php?pw="+pw);
 }
 function browser() {
var browser=navigator.appName;

if(browser=="Microsoft Internet Explorer") {
document.getElementById("podnozje").style.height="35";
}
if(browser=="Netscape") {
document.getElementById("podnozje").style.height="50";
}
}