/////////////////////////////////////////////
//                                         //
//  script powered by: mpps (www.mpps.pl)  //
//                                         //
/////////////////////////////////////////////

function Entry(lancuch){
	if(lancuch=='')
		return lancuch;
	while(lancuch.charAt(0) == " ") 
		lancuch = lancuch.substring(1,lancuch.length);
	while(lancuch.charAt(lancuch.length-1) == " ") 
		lancuch = lancuch.substring(0,lancuch.length-2);
		return lancuch;
}

function CheckContact(){
	if(document.contact.checkemail.checked==false && document.contact.checktelefon.checked==false){
		alert('Proszę zaznaczyć sposób kontaktu.');
		document.contact.checkemail.focus();
		return false;
	}
	else{
		if(Entry(document.contact.osoba.value)==''){
			alert('Proszę podać imię lub nazwę firmy.');
			document.contact.osoba.focus();
			return false;
		}

		if(document.contact.checkemail.checked==true){		//mail checked?
			if(Entry(document.contact.email.value)==''){
				alert('Proszę podać adres e-mail.');
				document.contact.email.focus();
				return false;
			}
		}

		if(document.contact.checktelefon.checked==true){		//phone checked?
			if(Entry(document.contact.telefon.value)==''){
				alert('Proszę podać numer telefonu.');
				document.contact.telefon.focus();
				return false;
			}
		}

		if(Entry(document.contact.wpis.value)==''){

			if(confirm("Czy chcesz wysłać wiadomość bez treści?")){
				return true;
			}
			else{
				document.contact.wpis.focus();
				return false;
			}
		}
	}
	return true;
}

function selecturl(s){
	var gourl=s.options[s.selectedIndex].value;
	window.top.location.href=gourl;
}
