function fake(us,domain)
{
     document.location.href='mailto:'+us+'@'+domain;
}

function CheckValues() {
  with (document.EmailForm) {
        
	 if (nazwisko.value == "") {
              alert("Proszę podać nazwisko.");
              nazwisko.focus();
              return false;
       }         
if ( (tel.value == "") && (email.value == "") ) {
              alert("Proszę podać telefon lub adres email.");
              tel.focus();
              return false;
       }
       if ( (email.value != "") && (email.value.indexOf ('@',0) == -1 || email.value.indexOf ('.',0) == -1)){
              alert("Nieprawidłowy adres e-mail.");
              email.select();
              email.focus();
              return false;
       }

  }
  return true;
}

function CheckValues_oferta() {
  with (document.EmailForm) {
        if (imie.value == "") {
              alert("Proszę podać imię.");
              imie.focus();
              return false;
       }
	 if (nazwisko.value == "") {
              alert("Proszę podać nazwisko.");
              nazwisko.focus();
              return false;
       }	 
         if ( (telefon.value == "") && (email.value == "") ) {
              alert("Proszę podać telefon lub adres email.");
              telefon.focus();
              return false;
       }
       if ( (email.value != "") && (email.value.indexOf ('@',0) == -1 || email.value.indexOf ('.',0) == -1)){
              alert("Nieprawidłowy adres e-mail.");
              email.select();
              email.focus();
              return false;
       }

  }
  return true;
}
