function show_image(img_name,img_source)
{
  display_image = window.open("","_blank","location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,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 bgcolor=\"#000000\" marginwidth=\"0\" marginheight=\"0\" topmargin=\"0\" leftmargin=\"0\" style=\"margin:0px;\" onload=\"window.resizeTo(eval(document.images[0].width+23),eval(document.images[0].height+45))\">");
  display_image.document.writeln("<div align=\"center\"><img src=\"" + img_source + "\" alt=\"" + img_name + "\" border=\"0\"><\/div>");
  display_image.document.writeln("<\/body>");
  display_image.document.writeln("<\/html>");
  display_image.document.close();
}

function ersetzen(address)
{
  top.location.replace(address);
}

function showWolf(url, option)
{
  Fenster=window.open(url, "_Wolf", option);
  Fenster.document.open("text/html","replace");
  Fenster.document.write("<body bgcolor=\"#000000\">");
  Fenster.document.write("<table align=\"center\" border=\"0\"><tr><td>");
  Fenster.document.write("<img src=\"" + url + "\">");
  Fenster.document.write("<\/td><\/tr><\/table>");
  Fenster.document.close();
  Fenster.focus();
}
