if (navigator.appVersion.indexOf("MSIE")>0) {
							 pol=new Array("261","263","281","322","324","243","347","378","380",
							 "260","262","280","321","323","211","346","377","379");
							} else {
							 pol = new Array("185","230","234","179","241","243","156","159","191",
							 "165","198","202","163","209","211","140","143","175");
							}
							bez=new Array("97","99","101","108","110","111","115","122","122",
							"65","67","69","76","78","79","83","90","90");
							function wyslij() {
							var mail = document.okno.mail.value;
						    if (mail.indexOf("@")<1) {
						   alert("Podaj adres e-mail!"); return false;
						  }
						  var tekst = document.okno.txt.value;
						  for (var i=0;i<pol.length;i++) {
						    var regexp = eval("/"+String.fromCharCode(pol[i])+"/g");
						    tekst=tekst.replace(regexp,String.fromCharCode(bez[i]));
						  }
						  mail.replace(" ","");
						  tekst.replace(" ","%20");
						  window.open("popup.php?mail="+mail
						    +"&amp;tekst="+escape(tekst),"odp","width=200,height=100");
						  return true;
}

