
// ---für bildergallerie----    
// Als Übergabeparameter wird die: bildq-url,breite, höhe,alt,pos.links,pos.rechts übergeben
// aufruf mit text: <a href="javascript:FotoWindow('grafik.jpg','700','450','','180','100')">link</a>
// aufruf mit Bild:  <a href="javascript:FotoWindow('bilder/grosse-bild.jpg','500','105','','180','100')">
//  <img border="1" src="bilder/kleine-bild.gif" alt="Braun Holzflöte" width="240" height="51" hspace="25" vspace="10"></a>

function FotoWindow(imageName,imageWidth,imageHeight,alt,posLeft,posTop) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><head><title>CATWEAZLE Fanpage</title>');
	newWindow.document.write('<META HTTP-EQUIV="imagetoolbar" CONTENT="yes">');
	newWindow.document.write('</head><body bgcolor="#A93E23" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

function mail_braun1() {
  var mail_1 =  "e";
  var mail_2 = "va";
  var mail_3 = "catwe";
  var mail_4 = "azl";
  var mail_5 = "e-fa";
  var mail_6 = "n.de";
  var mail = mail_1 + mail_2  + "@" + mail_3+ mail_4 + mail_5 + mail_6;
	return mail;
}
  function mailto_braun1() {
	return "<a href=\"mailto:" + mail_braun1() + "\">" ;
}
