function zoom(url, w, h, title, alt)
{
  l = screen.width/2-w/2;
  t = screen.height/2-h/2-50;
  if (l<0) l = 0;
  if (t<0) t = 0;
  if (alt == undefined) {
  var alt = "Kliknìte pro zavøení okna ..."
  }
  ww = w + 5;
  wh = h + 6;
  if (document.all) {
   ww = w;
   wh = h;
  }
  o = window.open('','','status=no,width='+ww+',height='+wh+',resizable=no,menubar=no,scrollbars=no,toolbar=no,left='+l+',top='+t+'');
  d = o.document;
  d.writeln('<html>\n<head>\n<title>\n'+title+'\n</title>');
  d.writeln('<meta http-equiv="Content-Type" content="text/html;charset=windows-1250">\n</head>');
  d.writeln('<body bgcolor="white" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
  d.write  ('<div align="center"><a href="javascript:close()">');
  d.write  ('<img src="'+url+'" width="'+w+'" height="'+h+'" border="0" hspace="0" vspace="0" alt="'+alt+'">');
  d.writeln('</a></div>');
  d.writeln('</body>')
  d.writeln('</html>');
}

function StartCatering() { 
    document.frmCatering.submit();
}

function StartJob() { 
    document.frmJob.submit();
}


