function aTarget(el, name)
{
	var wnd = window.open(typeof el == 'string' ? el : el.href, typeof name != 'undefined' ? name : '', 'menubar=yes,toolbar=yes,location=yes,directories=no,status=yes,scrollbars=yes,resizable=yes');
	if (!wnd) return false;
	wnd.focus();
	return true; 
}


function emailCheck() {
txt=document.isn.email.value;
if (txt.indexOf("@")<3){
alert("Sorry! Ten adres jest chyba niepoprawny. Proszę,"
+" sprawdź prefiks przed znakiem '@'.");
}
if ((txt.indexOf(".com")<5)&&(txt.indexOf(".org")<5)
&&(txt.indexOf(".gov")<5)&&(txt.indexOf(".net")<5)
&&(txt.indexOf(".mil")<5)&&(txt.indexOf(".edu")<5)&&(txt.indexOf(".pl")<5)){
alert("Sorry! Ten adres jest chyba niepoprawny.\nProszę,"
+" sprawdź sufiks. (powinien zawierać "
+".com, .edu, .net, .org, .gov, .mil lub .pl)");
   }
   else  { document.forms['isn'].onsubmit();
 }
}


