onerror=handleErr;

function start()
{
 if(id1==0)
 {
  flash=new SWFObject(root+'bn_main.swf?cacheprevent=1', "banner", "100%", "100%", "8", "#ffffff");
  flash.addParam("wmode", "transparent");
  flash.write('divBanner');
 }
}

function handleErr(msg,url,l)
{
 return true;
}

function setBackSize()
{
 try
 {
  h=document.getElementById('tdBody').offsetHeight;
  if(!document.getElementById('tdCenter')) h=h-7;
  document.getElementById('tdBack').height=h;
 }
 catch(e)
 {
  document.getElementById('divback').style.display='none';
 }
}

function menuOn(id, obj)
{
 changeImg(obj, 'mn'+id+'_ov');
 if(gEBI('sbmn'+id)) gEBI('sbmn'+id).style.display='block';
}

function menuOff(id, obj)
{
 changeImg(obj, 'mn'+id);
 if(gEBI('sbmn'+id)) gEBI('sbmn'+id).style.display='none';
}

function galleryShow(id, obj)
{
 g=gEBI('divGallery');
 g.style.marginTop=obj.offsetTop+'px';
 g.style.display='block';
 flash=new SWFObject(root+'gallery.swf?gateway='+gateway+'&id='+id, "gallery", "100%", "100%", "8", "#ffffff");
 flash.addParam("wmode", "transparent");
 flash.write('divGallery');
}

function galleryHide()
{
 g=gEBI('divGallery');
 g.style.display='none';
 g.innerHTML='';
}

function gEBI(id)
{
 obj=document.getElementById(id);
 return obj;
}

function formSend()
{
 if(gEBI('formImie').value.length<2) alert('Proszę podać imię');
 else if(gEBI('formNazwisko').value.length<2) alert('Proszę podać nazwisko');
 else if(gEBI('formEmail').value.length<2) alert('Proszę podać email');
 else if(gEBI('formDomowy').value.length<2) alert('Proszę podać telefon domowy');
 else if(gEBI('formAdres').value.length<2) alert('Proszę podać adres');
 else if(gEBI('formCv').value.length<2) alert('Proszę załączyć CV');
 else if(!gEBI('formZgoda1').checked) alert('Proszę wyrazić zgodę na przetwarzanie danych osobowych');
 else gEBI('formForm').submit();
}