// JavaScript Document

<!--
function popitup(url)
{
	window.open(url,'pdfwin','location=no,menubar=no,toolbar=no,status=yes,resizable=yes,scrollbars=yes,height=500,width=661');
	//if (window.focus) {newwindow.focus()}
	return false;
}

// -->


//nowa funkcja popup/ wywolanie typu javascript:okno('http://www.polcreate.pl/polec.php?url=L3BvcnRmb2xpby80MC5waHA=',0,330,160);
// w htmlu:
//href="javascript:okno('http://www.polcreate.pl/polec.php?url=L2Zpcm1hLnBocA==',0,330,160);" onmouseover="polec.src='http://www.polcreate.pl/img/btt_polec_on.gif'" onmouseout="polec.src='http://www.polcreate.pl/img/btt_polec_off.gif'">
popup="";

function pdfpopup(arg,s,x,y) {
	if (popup == '[object]') {popup.close()}

	scr_width = screen.availWidth;

	scr_height = screen.availHeight;

	left_align = eval(scr_width/2)-eval(x/2);

	top_align = eval(scr_height/2)-eval(y/2);

	popup=window.open(arg,'szczegoly','toolbar=0,location=0,direction=0,status=0,resizable=yes,menubar=0,scrollbars='+s+',width='+x+',height='+y+',left='+left_align+',top='+top_align);
	//popup.focus();
}