function klikuo() {
  if(! /.{2}/g.test(document.getElementById('gg_nazwa').value)){
    alert('Podaj swoje nazwisko.');
    return false;
  }
  if(! /.{2}/g.test(document.getElementById('gg_ulica').value)){
    alert('Podaj ulicę.');
    return false;
  }
  if(! /\d{2}-\d{3}/g.test(document.getElementById('gg_kodpocztowy').value)){
    alert('Kod pocztowy musi mieć postać dd-ddd, np. 00-950.');
    return false;
  }
  if(! /.{2}/g.test(document.getElementById('gg_miejscowosc').value)){
    alert('Podaj miejscowość.');
    return false;
  }
  if(! /.{1}@.{3,}/g.test(document.getElementById('gg_email').value)){
    alert('To nie jest prawidłowy adres e-mail.\nJeśli go nie masz, to wpisz: nie@mam');
    return false;
  }
  if(! /.{4}/g.test(document.getElementById('gg_telefon').value)){
    alert('Podaj numer telefonu.');
    return false;
  }
  return true; 
}

function popup(tytul,tekst,styl,szer,wys) {
if (styl==""){
  PreView = window.open("", "Preview",'left=60, top=0, scrollbars=yes, height='+wys+', width='+szer );
}else{
  PreView = window.open("", "Preview",(styl ? styl : "") );
}
PreView.document.open();
PreView.document.write('<HTML><HEAD>');
PreView.document.write('<TITLE>'+tytul+'</TITLE>');
PreView.document.write('</HEAD><BODY BGCOLOR=white TEXT=black>');
PreView.document.write(tekst);
PreView.document.write('<p align=center><a href="javascript:close()">[zamknij]</a></p>');
PreView.document.write('</BODY></HTML>');
PreView.document.close();
}

function jb_sprawdz_zgode()
{
  if(document.F1.CH1.checked == true)
  {
    return true;
  }
  else
  {
    alert('Nie możesz założyć konta bez wyrażania zgody na przetwarzanie danych osobowych.');
    return false;
  }
}

function reklama_lex()
{
  if(location.protocol == "http:")
  {
    document.write('<script type="text/javascript" src="http://reklama.lex.pl/glock/profinfo_rotator.php" id="reklama_lex"></script>');
  }
}