function GetEML(s) {
	var n=0;
	var addr="";
	for(var i=0; i < s.length; i++) {
		n=s.charCodeAt(i);
		addr += String.fromCharCode(n-3);
	};
	location.href=addr;
};

function open_window(imageName,alt) {


//alert('dddd');


        //oknoNowe = window.open('/sklep/foto/m_Microlife_BP_A100.jpg','nazwa','resizable=yes,  scrollbars=yes, width=30, height=30, status=yes, menubar=yes, location=no')

        newWindow = window.open("","okno","scrollbars=no,width=20,height=20,left=50,top=50");
        newWindow.document.open();
        newWindow.document.write('<html><title>'+alt+'</title>');
        newWindow.document.write('<script TYPE="text/javascript">');
        newWindow.document.write('function dopasuj() {szer = document.fotografia.width;wys = document.fotografia.height;top.window.resizeTo(szer+40,wys+70);  napis.style.display = "none";}');
        newWindow.document.write('</script>');        
        newWindow.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"  onLoad="dopasuj();" onClick="window.close()">');        
        newWindow.document.write('<div id="napis"><p style="font-family: Verdana,Tahoma,Arial; font-size: 11px; color: #003262; margin:10;">Otwieram plik...</p></div>');          
        newWindow.document.write('<table width=100% height=100% cellpadding=0 cellspacing=0 border=0><tr><td align=center valign=middle><img src='+imageName+' name="fotografia" alt='+alt+' vspace=0 hspace=0></td></tr></table>');    
        newWindow.document.write('</body></html>');
        newWindow.document.close();
        newWindow.focus();
};

