//   ::sector27 GmbH, Dorsten - cb^2
//   http://www.sector27.de - eMail: info@sector27.de
//   CGI-/ Perl-Programmierungen, Webapplikationen, 
//   HTML, XHTML, DHTML, CSS, JavaScript, Webdesign 
//   Alle Rechte vorbehalten  - (c)2007 by sector27


function hervorheben(o){ 						// o = Objekt
		o.style.backgroundColor			= '#c4fa9e'; 
}


function normalisieren(o)	{ 					// o = Objekt
		o.style.backgroundColor	= ''; 
}


function soom(bild, b, h){
	b = (!b)?400:b;
	h = (!h)?400:h;
	
	Fenster1=open("","_new","width="+b+",height="+h+",left=150,top=100,resizable=yes, dependent=yes");

	with(Fenster1.document){
		open();
		write("<html>");
		write("<head><title>PFLANZENART</title></head>");
		write("<body topmargin='0' leftmargin='0' marginheight='0' marginwidth='0' bgcolor=#ffffff>");
		write("<table width=100% cellpadding=0 cellspacing=0><TR><TD align='center' valign='middle'>");
		write("<a href='JavaScript:self.close();'><img src='pics/"+bild+".jpg' border='0' alt='Ein Klick ... schließt dieses Fenster'></a>");
		write("</td></tr></table>");
		write("</body>");
		write("</html>");
		close();
	}
	Fenster1.resizeTo(b+12,h+30);
	Fenster1.focus();
}



function sendenachricht(e){
  var a = "mail";
  var b = a.concat("to:");
  	  c = b.concat(e);
  var d = c.concat(String.fromCharCode(64));
  var e = d.concat("pflanzenart.de");
  window.location.href=e;
}
