// JavaScript Document

// Image Print Popup //

var w;
function printImage (img) {
  img = img.src ? img.src : img;
  if (w && !w.closed)
    w.close();
  w = open ('', 'imagePrint', 
       'menubar=0,locationbar=0,statusbar=0,resizable=0'
       + ',scrollbars=0,width=315,height=117');
  var html = '';
  html += '<HTML><BODY ONLOAD="if (window.print) window.print(); '
           + 'setTimeout(\'window.close()\', 1);">';
  html += '<IMG SRC="' + img + '">';
  html += '<\/BODY><\/HTML>';
  w.document.open();
  w.document.write(html);
  w.document.close();
}

//END//

<!-- Original:  Eric King (eric_andrew_king@hotmail.com) -->
<!-- Web Site:  http://redrival.com/eak/ -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//  End -->