function pic(img_source, img_name)
{
  display_image = window.open("","_blank","location=no,menubar=no,resizable=yes,scrollbars=no,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("  <style type=\"text/css\">");
  display_image.document.writeln("    body {background-image:url(images/background.jpg); background-repeat:repeat-y;}");
  display_image.document.writeln("    #black9 {color:#000000; font-family:verdana; font-size:9pt;}");

  display_image.document.writeln("  <\/style>");
  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+30),eval(document.images[0].height+55)); window.moveTo(screen.width/2-eval(document.images[0].width)/2,screen.height/2-eval(document.images[0].height)/2)\">");
  display_image.document.writeln("  <table height=\"100%\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">");
  display_image.document.writeln("   <tr><td height=\"10\"><\/td><\/tr>");
  display_image.document.writeln("   <tr><td>");
  display_image.document.writeln("    <table cellpadding=\"1\" cellspacing=\"0\" border=\"0\" bgcolor=\"#000000\">");
;
  display_image.document.writeln("     <tr><td>");
  display_image.document.writeln("      <div align=\"center\"><img src=\"" + img_source + "\" alt=\"" + img_name + "\" border=\"0\"><\/div><\/td><\/tr>");
  display_image.document.writeln("    <\/table><\/td><\/tr>");;
  display_image.document.writeln("   <tr><td height=\"10\"><\/td><\/tr><\/table>");
  display_image.document.writeln(" <\/body>");
  display_image.document.writeln("<\/html>");
  display_image.document.close();
}


function over(button,pic)
{
  window.document.images[pic].src = "images/"+button+".gif";
}


function out(button2,pic)
{
  window.document.images[pic].src = "images/"+button2+".gif";
}
