function grossesBild(produktname,bildname,breite,hoehe)
  {
  
  var neuesFenster=window.open("","Details","width=" + (breite+20)+ ",height=" +(hoehe+50)+ ",left=100, top=100");
	
	neuesFenster.document.open();
	neuesFenster.document.writeln("<html><head><title>"+produktname+"</title>");
	neuesFenster.document.writeln("<link rel=\"stylesheet\" href=\"../style4.css\" type=\"text/css\">");
	neuesFenster.document.writeln("</head>");
	neuesFenster.document.writeln("<body bgcolor='#FFFFFF'>");
	neuesFenster.document.writeln("<div id='gross' style='position:absolute; top:10px; left:10px'>");
	neuesFenster.document.writeln("<img src=" +bildname+" width=" +breite+ " height=" +hoehe+ ">");
	neuesFenster.document.writeln("<p align='right'><a href=\"#\" class=\"textlink\" onclick=\"window.close();\">Close window</a></p>");
	
	neuesFenster.document.writeln("</body>");
	neuesFenster.document.writeln("</html>");
	neuesFenster.document.close();
	neuesFenster.focus();
	}
