function openimagepop (url, weite, hoehe, alt, scrollen)
{
  var fensterweite = parseInt (weite) + 0;
  var fensterhoehe = parseInt (hoehe) + 0;

  var win = window.open ("", "bild", "width=" + fensterweite + ",height=" + fensterhoehe + ",scrollbars=" + scrollen);

  var output = '';	
  output += '<html><head><title>Star Mountain Pictures</title>\n';
  output += '<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>\n';
  

  output += '</head>\n';
  output += '<body leftmargin="0" topmargin="0" rightmargin="0" marginheight="0" marginwidth="0">\n';
  output += '<img src="' + url + '" width="' + weite + '" height="' + hoehe + '" alt="' + alt + '" border="0">\n';
  output += '</body>\n';
  output += '</html>\n';

  win.document.write (output);
}
