var i=0;
function resizeBak() {
  if (navigator.appName == 'Netscape') i=40;
  if (document.images[0]) window.resizeTo(document.images[0].width +30, document.images[0].height+90-i);
  self.focus();
}
function resize2(item) {
  if (navigator.appName == 'Netscape') i=40;
	
  if (item.document.images[0]) item.window.resizeTo(item.document.images[0].width +30, item.document.images[0].height+90-i);

}

function makeView(file,w,h,opis) {
	var l=opis.length;
	var w2=w+12;
	
	//ok ile linii?
	var lines=Math.floor(l/(w/7))+1;
	

	var h2=h+(lines*14)+20+30;
	
	var left=screen.availWidth/2-(w+10)/2;
	var top=screen.availHeight/2-h2/2;
	newwindow=window.open('','','width=100,height=100,left='+left+',top='+top+',scrollbars=no');
	newwindow.document.write("<html><title>DEPHOS</title>");
	newwindow.document.write("<style> table {font-family:verdana;font-size:11px} a { color:#000000; font-weight:bold} a:hover {color:#ff0000}</style>");
	newwindow.document.write("<body marginheight='0' margiwidth='0' leftmargin='0' topmargin='0' background='../images/bg_tiler.gif' >");
	newwindow.document.write("<table width='100%' height='100%' cellpadding='6' cellspacing='0'>");
	newwindow.document.write("<tr><td><a href='#' onClick='self.close()'><img src='"+file+"' border=0 alt='Zamknij'></a></td></tr>")
	newwindow.document.write("<tr><td>"+opis+"</td></tr><tr><td align=right valign=bottom><a href='javascript:self.close()'>Zamknij</a></td></tr></table>");
	newwindow.document.write("</body></html>");
	newwindow.window.document.onload=setTimeout("resize2(newwindow)",250);
	
}


function makeView_old(file,w,h,opis) {
	var l=opis.length;
	var w2=w+12;
	
	//ok ile linii?
	var lines=Math.floor(l/(w/7))+1;
	

	var h2=h+(lines*14)+20+30;
	
	
	var left=screen.availWidth/2-(w+10)/2;
	var top=screen.availHeight/2-h2/2;
	newwindow=window.open('','','width=600,height=500,left='+left+',top='+top+',scrollbars=no');
	newwindow.document.write("<html><title>DEPHOS</title>");
	newwindow.document.write("<style> table {font-family:verdana;font-size:11px} a { color:#000000; font-weight:bold} a:hover {color:#ff0000}</style>");
	newwindow.document.write("<body marginheight='0' margiwidth='0' leftmargin='0' topmargin='0' background='../images/bg_tiler.gif'>");
	newwindow.document.write("<table width='100%' height='100%' cellpadding='6' cellspacing='0'>");
	newwindow.document.write("<tr><td align=center><a href='#' onClick='self.close()'><img src='"+file+"'  border=0 alt='Zamknij'></a></td></tr>")
	newwindow.document.write("<tr><td>"+opis+"</td></tr><tr><td align=right valign=bottom><a href='javascript:self.close()'>Zamknij</a></td></tr></table>");
	newwindow.document.write("</body></html>");
}