/*
   |-------------------------------------| 
   |  JavaScript by Dexter to mazosz.hu  |
   |-------------------------------------|
*/

 var SITE_URL="http://demos.zero3.hu/mazosz";

 function bigpic(kepfile,w,h){
   var TheURL=URL + "/bigpics/" + kepfile + ".html";
   var properties="width=" + w + ",height=" + h + ",left=100,top=100";
   window.open(TheURL,'bigpict',properties);
 }
 
 function popups(kepfile){
   var TheURL=URL + "/popups/" + kepfile + ".html";
   window.open(TheURL,'bigpict','scrollbars=yes,width=600,height=400,left=50,top=50');
 }

 // kep rollover kezeles
 function ujKep(arg){
   if ( document.images ){
 	 rslt=new Image();
	 rslt.src=arg;
	 return rslt;
   }
 }

 function KepValt(kepID,kepNev) {
   document.images[kepID].src=eval(kepNev + ".src");
 }

 function ShowBigPics(kepurl,w,h){
   if ( (w>0) && (h>0) ){
     var pref="resizable=no,width="+w+",height="+h+",left=100,top=100";
     window.open(SITE_URL + 'ShowBigPics.php?p=' + kepurl,'Bigpics',pref);
   }else{
      window.open(SITE_URL + 'ShowBigPics.php?p=' + kepurl,'Bigpics','toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes');
    }
 }
 
