function openCentered(url,w,h,name,par)
{
  if(!url||!w||!h)return null;
  var macie=navigator.platform=="MacPPC"&&navigator.appName=='Microsoft Internet Explorer';
  return window.open(url,name?name:"","width="+(macie?w-16:w)+",height="+(macie?h-16:h)+",left="+((screen.width-w)/2)+",top="+((screen.height-h)/2)+(par?","+par:""));
}

function zoom(url, w, h, title)
{
  o = window.open('','fotka','status=no,width='+w+',height='+h+',resizable=no,menubar=no,scrollbars=no,toolbar=no');
  d = o.document;
  d.writeln('<html>\n<head>\n<title>Audi  - '+title+'</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  ('<a href="javascript:close()">');
  d.write  ('<img src="'+url+'" width="'+w+'" height="'+h+'" border="0" hspace="0" vspace="0" alt="Kliknìte pro zavøení okna">');
  d.writeln('</a>');
  d.writeln('</body>')
  d.writeln('</html>');
}
