function fixheight() {
 var maxH = 0;
 var ids = ["lijevi","desni"];
 // find the highest column
 for (var i=0;i<ids.length;i++) {
  var d = document.getElementById(ids[i]);
  if (d.offsetHeight > maxH) maxH = d.offsetHeight;
 }
 // set them all to be that height
 for (var i=0;i<ids.length;i++) {
  var d=document.getElementById(ids[i]);
  d.style.height = maxH+"px";
 }
}

	function popimage(imagesrc){
		var look='status=no,scrollbars=no, resize=yes, width=640,height=480';
		var naziv="IMG";
		popwin=window.open('',naziv,look);
		popwin.document.open();
		popwin.document.write('<head><title>RE/MAX</title></head><body onLoad="self.resizeTo(document.imgItemPic.width+10,document.imgItemPic.height+25)" leftmargin="0" topmargin="0">');
		popwin.document.write('<a href="javascript:this.window.close()"><img name="imgItemPic" title="Close/Zatvori/Schliesen" alt="<%=det_klikni1%>" border="0" vspace="0" hspace="0" src="'+imagesrc+'"></a>');
		popwin.document.write('</body>');
		popwin.document.close();
		popwin.focus();

	}
	
	function popUp(URL, sirina, visina) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+sirina+",height="+visina+"');");
}
