 function show_image(img_name,img_source,img_width,img_height)
  {
   display_image = window.open("","_blank","width=" + img_width + ",height=" + img_height + ",location=no,menubar=no,resizable=yes,scrollbars=no,status=no,top="+30+",left="+30+",toolbar=no");
   display_image.document.open("text/html");
   display_image.document.writeln("<html>");
   display_image.document.writeln("<head>");
   display_image.document.writeln("<title>" + img_name + "</title>");   
   display_image.document.writeln("<\/head>");  
   display_image.document.writeln("<body marginwidth=\"0\" marginheight=\"0\" topmargin=\"0\" leftmargin=\"0\" style=\"margin:0px;\">");
   display_image.document.writeln("<img src=\"" + img_source + "\" alt=\"" + img_name + "\" width=\"" + img_width + "\" height=\"" + img_height + "\" border=\"0\">");
   display_image.document.writeln("<\/body>");
   display_image.document.writeln("<\/html>");
   display_image.document.close();
  }
  
  
  function show_imagetext(img_name,img_source,elem_text,img_width,img_height)
  {
	windowwidth =  1.0*img_width+5.0; 
	windowhight =  1.0*img_height+25.0; 
   display_image = window.open("","_blank","width="+ windowwidth +",height=" + windowhight + ",location=no,menubar=no,resizable=yes,scrollbars=no,status=no,toolbar=no");   //+ windowwidth + 
   display_image.document.open("text/html");
   display_image.document.writeln("<html>");
   display_image.document.writeln("<head>");
   display_image.document.writeln("<title>" + img_name + "</title>");
   display_image.document.writeln("<link href=\"../hueppi.css\" rel=\"stylesheet\" type=\"text/css\">");
   display_image.document.writeln("<\/head>");
   display_image.document.writeln("<body marginwidth=\"0\" marginheight=\"0\" topmargin=\"0\" leftmargin=\"0\" style=\"margin:0px;\">");
   display_image.document.writeln("<table width=\"" + img_width + "\" border=\"0\">");   
   display_image.document.writeln("<tr><td width=\"" + img_width + "\"><img src=\"" + img_source + "\" alt=\"" + img_name + "\" width=\"" + img_width + "\" height=\"" +  img_height + "\" border=\"0\"></td></tr>"); //\"" + img_width + "\"
 
   display_image.document.writeln("<tr><td height=\"\"class=\"text2schwarzfett\">"+ elem_text +"</td></tr>");
//   display_image.document.writeln("<img src=\"" + img_source + "\" alt=\"" + img_name + "\" width=\"" + img_width + "\" height=\"" +   img_height + "\" border=\"0\">");
   display_image.document.writeln("<\/table>");
   display_image.document.writeln("<\/body>");
   display_image.document.writeln("<\/html>");
   display_image.document.close();
  }
 
 // Bei dieser Funktion ist ledigilch der Pfad zur CSS Datei absolut angegeben
 function show_imagetext2(img_name,img_source,elem_text,img_width,img_height)
  {
	windowwidth =  1.0*img_width+5.0; 
	windowhight =  1.0*img_height+25.0; 
   display_image = window.open("","_blank","width="+ windowwidth +",height=" + windowhight + ",location=no,menubar=no,resizable=yes,scrollbars=no,status=no,toolbar=no");   //+ windowwidth + 
   display_image.document.open("text/html");
   display_image.document.writeln("<html>");
   display_image.document.writeln("<head>");
   display_image.document.writeln("<title>" + img_name + "</title>");
   display_image.document.writeln("<link href=\"http://www.brunohueppi.ch/hueppi.css\" rel=\"stylesheet\" type=\"text/css\">");
   display_image.document.writeln("<\/head>");
   display_image.document.writeln("<body marginwidth=\"0\" marginheight=\"0\" topmargin=\"0\" leftmargin=\"0\" style=\"margin:0px;\">");
   display_image.document.writeln("<table width=\"" + img_width + "\" border=\"0\">");   
   display_image.document.writeln("<tr><td width=\"" + img_width + "\"><img src=\"" + img_source + "\" alt=\"" + img_name + "\" width=\"" + img_width + "\" height=\"" +  img_height + "\" border=\"0\"></td></tr>"); //\"" + img_width + "\"
 
   display_image.document.writeln("<tr><td height=\"\"class=\"text2schwarzfett\">"+ elem_text +"</td></tr>");
//   display_image.document.writeln("<img src=\"" + img_source + "\" alt=\"" + img_name + "\" width=\"" + img_width + "\" height=\"" +   img_height + "\" border=\"0\">");
   display_image.document.writeln("<\/table>");
   display_image.document.writeln("<\/body>");
   display_image.document.writeln("<\/html>");
   display_image.document.close();
  }
  
  
  
  
function Bildwechsel(Bildobjekt)
{
 window.document.images.src = Bildobjekt.src;
}


function show_color(color_name,color_hex,img_width,img_height)
  {
   display_image = window.open("","_blank","width=" + img_width + ",height=" + img_height + ",location=no,menubar=no,resizable=yes,scrollbars=no,status=no,top="+30+",left="+30+",toolbar=no");
   display_image.document.open("text/html");
   display_image.document.writeln("<html>");
   display_image.document.writeln("<head>");
   display_image.document.writeln("<title>" + color_name + "</title>");
   
   display_image.document.writeln("<style type=\"text/css\">body {background-color: #"+ color_hex + ";}</style>");
   
   display_image.document.writeln("<\/head>");   
   display_image.document.writeln("<body>");   
   display_image.document.writeln("<\/body>");
   display_image.document.writeln("<\/html>");
   display_image.document.close();
  }
