/*************************************************/

function emailscript(name){
	document.write('<a href="mailto:' + name + '@summers-end.de">' + name + '@summers-end.de</a>');
}
/*************************************************/



function PopupFensterBilder(Werte,Titel,Bildname,Breite,Hoehe) {
  var Popup = open("","",Werte);
  var testseite = Popup.document;
  Inhalt = "<html><head><title>"+Titel+"</title></head>" +
    "<body bgcolor=\"#000000\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">" +
    "<img calss=\"popup\" src=\"grafiken/bilder/pics_" + Bildname +
    ".jpg\" style=\"width=" + Breite +
    "px;height=" + Hoehe + "px\" /></body></html>";
  testseite.open();
  testseite.write(Inhalt);
  testseite.close();
}

function PopupFensterBand(Werte,Titel,Bildname,Breite,Hoehe) {
  var Popup = open("","",Werte);
  var testseite = Popup.document;
  Inhalt = "<html><head><title>"+Titel+"</title></head>" +
    "<body bgcolor=\"#000000\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">" +
    "<img calss=\"popup\" src=\"grafiken/bilder/pics_" + Bildname +
    ".jpg\" style=\"width=" + Breite +
    "px;height=" + Hoehe + "px\" /></body></html>";
  testseite.open();
  testseite.write(Inhalt);
  testseite.close();
}

