﻿function newWindow(img,w,h) { w += 40; h += 65
var options = "width=" + w +",height=" + h;
newWin = window.open("", "ImageWindow", options);
newWin.document.write("<html><head><title><\/title><\/head><body bgcolor=#cccccc link=#009999>");
newWin.document.write("<div align='center'><img src='" + img + "' border=0><p>");
newWin.document.write("<a href='javascript:window.close()'><font size='1' face='Verdana,Helvetica,Arial'>Close window<\/font><\/a>");
newWin.document.write("<\/div><\/body><\/html>");
newWin.document.close();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}