// JavaScript Document
function pokazOFERTE(kogo)
{

  var el = document.getElementById(kogo);

  if (el.style.visibility != 'visible')
  {
    el.style.visibility = "visible";
    el.style.position = "static";  
  
  }
  else
  {
    el.style.visibility = "hidden";
    el.style.position = "absolute";  
    
  }
  
}

function sprawdz_formularz(nazwa)
{
 if(document.forms[nazwa].imienazwisko.value == "Imię i nazwisko")
 {
    alert ("Podaj swoje dane do kontaktu");
    return false;
 }
 else if( (document.forms[nazwa].email.value=="Adres email") && (document.forms[nazwa].telefon.value=="Telefon"))
 {
    alert ("Podaj telefon lub adres e-mail");
    return false;
 }
 else if (document.forms[nazwa].zapytanie.value=="Wpisz treść...")
 {
    alert ("Zadaj nam pytanie");
    return false;  
 }
 else
 {
    return true;
 }

}

