<!--
timeout=0; 
function PopUp1(FName, FTitle, w, h, id){
	var w1,next,prev;
	next=id+1;
	prev=id-1;
	w1=w+20;
	windowprops = "left=50,top=50,width="+w1+",height="+h+",menubar=0,toolbar=0,status=0,resizable=1,scrollbars=1";
	text = "<html><head><title>"+FTitle+"</title>"
	+"<META HTTP-EQUIV=\"Content-Type\"CONTENT=\"text/html; charset=iso-8859-2\">"
	+"<META HTTP-EQUIV=\"CACHE-CONTROL\" CONTENT=\"NO-CACHE\">"
	+"<META HTTP-EQUIV=\"PRAGMA\" CONTENT=\"NO-CACHE\">"
	+"<LINK REL=\"stylesheet\" HREF=\"website/css/id.css\" TYPE=\"text/css\">"
	+"<LINK REL=\"stylesheet\" HREF=\"website/css/class.css\" TYPE=\"text/css\">"
	+"<LINK REL=\"stylesheet\" HREF=\"website/css/url.css\" TYPE=\"text/css\">"
	+"<LINK REL=\"stylesheet\" HREF=\"website/css/standard.css\" TYPE=\"text/css\">"
	+"</head>"
	+"<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>"
	+"<table width="+w+" height=100% border=0 cellpading=0 cellspacing=0 align=center>"
	+"<tr><td align=center class=td3>"
	+"<table  border=0 cellpading=0 cellspacing=0>"
	+"<tr><td>"
	+"<div align=right style=\"padding-bottom: 5px;\">"
	+"<a onfocus=blur(); id=a2 href=javascript:print();>drukuj</a>&nbsp; "
	+"<a onfocus=blur(); id=a2 href=javascript:close();>zamknij okno<br /><br />"
	+"<hr>"
	+"<br />"
	+"<IMG border=0 SRC="+ FName +"></a></div>"
	+"<br />"
	+"<hr>"
	+"<span id=mini>Copyright &copy; Jawoplast</span>"
	+"</td></tr></table>"
	+"</td></tr></table>"
	+"</body>"
	+"</html>";
	
	preview = window.open("", "preview", windowprops);
	preview.document.open();
	preview.document.write(text);
	preview.document.close();
}
//-->
