function newsletter(){
	if (document.news.email.value==''){
		alert("Proszę wypełnić pole E-mail !")
		document.news.email.focus();
	} else {
		if ((document.news.email.value.indexOf("@")==document.news.email.value.lastIndexOf("@"))&&(document.news.email.value.charAt(document.news.email.value.indexOf("@")+1) != '.')&&(document.news.email.value.charAt(document.news.email.value.indexOf("@")-1) != '.')&&(document.news.email.value.indexOf("@") != 0)&&(document.news.email.value.indexOf(".") != 0)&&(document.news.email.value.lastIndexOf(".") > document.news.email.value.indexOf("@"))){
			document.news.submit();
		} else {
			alert('Proszę wpisać poprawnie adres E-mail.');
			document.news.email.focus();
		} 
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openWindow(str,features){
	window.name='windowOpener';
	window.open(str,'newWindow',features);
} 

function send_kontakt(){
	if (document.kontakt.imie.value==''){
		alert("Proszę wypełnić pole Imię !")
		document.kontakt.imie.focus();
		return false;
	} else if (document.kontakt.nazwisko.value==''){
		alert("Proszę wypełnić pole Nazwisko !")
		document.kontakt.nazwisko.focus();
		return false;
	} else if (document.kontakt.email.value==''){
		alert("Proszę wypełnić pole Twój e-mail !")
		document.kontakt.email.focus();
		return false;
	} else if (document.kontakt.temat.value==''){
		alert("Proszę wypełnić pole Temat !")
		document.kontakt.temat.focus();
		return false;
	} else if (document.kontakt.tresc.value==''){
		alert("Proszę wypełnić pole Treść !")
		document.kontakt.tresc.focus();
		return false;
	} else {
		if ((document.kontakt.email.value.indexOf("@")==document.kontakt.email.value.lastIndexOf("@"))&&(document.kontakt.email.value.charAt(document.kontakt.email.value.indexOf("@")+1) != '.')&&(document.kontakt.email.value.charAt(document.kontakt.email.value.indexOf("@")-1) != '.')&&(document.kontakt.email.value.indexOf("@") != 0)&&(document.kontakt.email.value.indexOf(".") != 0)&&(document.kontakt.email.value.lastIndexOf(".") > document.kontakt.email.value.indexOf("@"))){
			return true;
		} else {
			alert('Proszę wpisać poprawnie Twój e-mail.');
			document.kontakt.email.focus();
			return false;
		} 
	}
}

function rozwin(rid) {
	if (!document.getElementById) return;
	if( rid != '' ) {
		current=(document.getElementById(rid).style.display == 'none') ? 'block' : 'none';
	}
	var kategorie = document.getElementById('menu').getElementsByTagName('div');
	for (var i=0; i<kategorie.length; i++) {
			kategoria = kategorie[i];
			kategoria.style.display = 'none';
	}
	if( rid != '' ) {
		document.getElementById(rid).style.display = current;
	}
}

function clearDefault(ta){
    if (ta.defaultValue==ta.value) ta.value = "";
 }