
var size_x = 500;
var size_y = 600;

function owi(param,x,y,l,t)
  {
      window.open(param,'Certzfikat','width='+x+',height='+y+',top='+t+',left='+l+'');
  }
  
  
function checkEmail(email) {  
    var filter = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
    if (!filter.test(email)) {    
      return false;
    }
    return true;
  }  
  
function kontakt_send()
  {
      if (  !checkEmail(document.kontaktform.email.value)  )
      {
        alert('Podaj prawidlowy adres email!');
        exit;
      }
  
      if ( ( document.kontaktform.wiadomosc.value=='wiadomość...') || ( document.kontaktform.wiadomosc.value=='') )
      {
          alert('Wpisz wiadomość!');
          exit;
      } 
  
      if ( confirm('Czy jesteś pewny że chcesz wysłać wiadomość?') )
      {
          document.kontaktform.submit();
      }
  }  
  
  
  
function showhide(eid)
  {
      if (document.getElementById(eid).style.display == 'none')      
      {
        document.getElementById(eid).style.display = 'block';
        document.getElementById(eid).style.visibility = 'visible';
      }else
          {
              document.getElementById(eid).style.visibility = 'hidden';
              document.getElementById(eid).style.display = 'none';              
           }         
  }
  

  function system_ubs()
  {
      window.open('system_ubs.html','System','left=50,top=50,width=1150,height=600');
  }
  
  