function popup_url(url, size_w, size_h, scroll) {
	msg=open('http://www.haik.pl/'+url,"HAIK","scrollbars="+scroll+",toolbar=no,directories=no,width="+size_w+",height="+size_h+",menubar=no");
	msg.document.close();
	msg.focus();
};

function popup_page(page, size_w, size_h, scroll)	{
	msg=open(""+page+".php","HAIKGaleria","scrollbars="+scroll+",toolbar=no,directories=no,width="+size_w+",height="+size_h+",menubar=no");
	msg.document.close();
	msg.focus();
};

function popup_img(url, size_w, size_h, scroll) {
	move_t = Math.round((screen.availWidth-size_w)/2);
	move_l = Math.round((screen.availHeight-size_h)/2);
	
	msg=open("","HAIKObrazek","scrollbars="+scroll+",toolbar=no,directories=no,width="+size_w+",height="+size_h+",menubar=no,top="+move_t+",left="+move_l);
	msg.document.close();
	msg.document.write("<HTML><HEAD><TITLE>HAIK</TITLE></HEAD>");
	msg.document.write("<BODY oncontextmenu=\"return false\" BGCOLOR=White TEXT=#8F82AE TOPMARGIN=0 LEFTMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>");
	msg.document.write("<CENTER><IMG SRC='"+url+"' ALT='Zamknij Okno' BORDER='0' onclick='window.close()' style='cursor: hand;'><BR><BR>");
	msg.document.write("</BODY></HTML>");
	msg.resizeTo(size_w,size_h);
	msg.focus();
};

function popup_flash(flashsrc, size_w, size_h, scroll)	{
	msg=open("","HAIK","scrollbars="+scroll+",toolbar=no,directories=no,width="+size_w+",height="+size_h+",menubar=no");
	msg.document.close();
	msg.document.write("<HTML><HEAD><TITLE>HAIK</TITLE></HEAD>");
	msg.document.write("<BODY BGCOLOR=White TEXT=#8F82AE TOPMARGIN=0 LEFTMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>");	
	msg.document.write("<OBJECT codeBase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0 width="+size_w+" height="+size_h+" classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000>");
	msg.document.write("<PARAM NAME='Movie' VALUE='"+flashsrc+"'>");
	msg.document.write("<PARAM NAME=\"Src\" VALUE='"+flashsrc+"'>");
	msg.document.write("<EMBED src='"+flashsrc+"' quality=high bgcolor=#000000 width="+size_w+" height="+size_h+" TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'>");
	msg.document.write("</EMBED>");
	msg.document.write("</OBJECT>");
	msg.document.write("</BODY></HTML>");	
	msg.focus();
};



