function build(){
  hImg=211;
  hBody=document.getElementsByTagName('body')[0].offsetHeight;

  if(document.getElementById('main')){
    hMain=document.getElementById('main').offsetHeight;
  }
  else{
    hMain=0;
  }

  hMax=Math.max(hBody,hMain);
  
  if(0){
    a='Omluvte prosím tuto zprávu,\nmomentálně se testuje.\n';
    a+=hMax;
    alert(a);
  }

  h=hMax-hImg-10;
  document.getElementById('ipes_bg').style.top=h;

  //setTimeout('build()',1000);
}


function emil(id,jm,dom2,dom1,param){
  if(dom1==''){
    dom1='cz';
  }
  adr=jm+'@'+dom2+'.'+dom1;
  href='mailto:'+adr;
  if(param){href+= '?'+param;}
  document.getElementById(id).href=href;
  document.getElementById(id).innerHTML=adr;
}

