<!--
function win_open(url,b,h)
{
var b,h,popup;

popup=window.open("","","width="+b+",height="+h+",menubar=0,toolbar=0,statusbar=0,resizable=0");
popup.document.open();
with (popup) {
  document.write("<html><head><title>Tramways.at</title>");
  document.write('<script type="text/javascript">');
  document.write("function click() { window.close(); } ");
  document.write("document.onmousedown=click ");
  document.write('</script>');
  document.write('</head>');
  document.write("<body marginwidth='0' marginheight='0' leftmargin='0' topmargin='0'>");
  document.write("<img src='"+url+"' border='0'>");
  document.write("</body></html>");
  popup.document.close();
}
}
//-->
