

function showImageV(file) 
{
  okno = window.open(file,'Zdjêcie','height=520,width=390,toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=yes,directories=no,status=no,resizable=no');		

  okno.title = file;	
  okno.focus();
}

function showImageH(file) 
{
  okno = window.open(file,'Zdjêcie','height=520,width=680,toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=yes,directories=no,status=no,resizable=no');		

  okno.title = file;	
  okno.focus();
}

function showImage(id,w,h,tekst) {

        var tlo='white';

	var alt='Zdjêcie';
	var left = Math.ceil( (window.screen.width-w)  / 2);
	var top  = Math.ceil( (window.screen.height-h) / 2);

	myWin = window.open("","myWind","width="+w+",height="+h+",scrollbars=no,resizable=no,left="+left+",top="+top+");");
	myWin.document.open();
	myWin.document.write('<html><title>'+alt+'</title><body bgcolor="'+tlo+'" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" xonBlur="self.close()">');
	myWin.document.write('<table width=100% cellspacing=0 cellpadding=0 border=0><tr valign=top><td align=center><a href=\"javascript:window.close();\"><img src=\"'+id+'\" border=0 alt=\"zamknij..\"></a><br> <font face="Arial" color="#414141" size="2"><b> '+tekst+' </b></font> </td></tr>');
        myWin.document.write('</table></body></html>');
	myWin.document.close();
	myWin.focus();

}
