


 function pdfon(_alt) {
  var txtfield =  _alt.parentNode.parentNode;
txtfield.childNodes[1].style.backgroundColor = "#CCE9BF";
txtfield.childNodes[2].style.backgroundColor = "#CCE9BF";
txtfield.childNodes[3].style.backgroundColor = "#CCE9BF";

txtfield.childNodes[3].firstChild.nodeValue = _alt.alt;
  }



 function pdfoff(_alt) {
   var txtfield =  _alt.parentNode.parentNode;
txtfield.childNodes[1].style.backgroundColor = "Transparent";
txtfield.childNodes[2].style.backgroundColor = "Transparent";
txtfield.childNodes[3].style.backgroundColor = "Transparent";
txtfield.childNodes[3].firstChild.nodeValue = " ";

  }





var  newWindow;
var picOpen;
var aktiv;
	function offen(G_Bild) {

	picOopen = new Image();
	picOopen.src = G_Bild;
	newWindow = window.open("about:blank","newWindow", "width="+640+",height="+ 480+",left=" +1+ ",top="+1);
 	newWindow.document.open("text/html","replace");
	newWindow.document.writeln('<title>Klicken Sie Bitte auf das Bild, um dieses Fenster zu schliessen.</title>');
	newWindow.document.writeln('<body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"  >');
	newWindow.document.writeln('<table border="0" cellspacing="0" cellpadding="0" align="center"><tr><td>');
	newWindow.document.writeln('<img src="'+G_Bild+'"  alt="Klicken Sie Bitte auf das Bild, um dieses Fenster zu schliessen." >');
	newWindow.document.writeln('</td></tr></table></body>');
	newWindow.document.close();

aktiv = window.setInterval("intW()", 500);

}




function intW()
{
	if (picOopen.complete == true) {
	newWindow.document.open("text/html","replace");
	newWindow.document.writeln('<title>Klicken Sie Bitte auf das Bild, um dieses Fenster zu schliessen.</title>');
	newWindow.document.writeln('<body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onLoad="self.resizeTo('+(picOopen.width + 10)+', '+(picOopen.height + 40)+')" onBlur="self.close()" onClick="self.close()">');
	newWindow.document.writeln('<table border="0" cellspacing="0" cellpadding="0" align="center"><tr><td>');
	newWindow.document.writeln('<img src="'+picOopen.src+'"  alt="Klicken Sie Bitte auf das Bild, um dieses Fenster zu schliessen." >');
	newWindow.document.writeln('</td></tr></table></body>');
	newWindow.document.close();
	newWindow.focus();
	window.clearInterval(aktiv);
picOopen.height = 0;
picOopen.width = 0;
picOopen.src = "";
		}
}





/*
    if (picOopen.complete == true) {





    }*/



