﻿// JScript File
function PopupWindow(popupURL, popupName, theWidth, theHeight)
{
    var options = 'toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,scrollbars=0,width='+theWidth+',height='+theHeight+'';    
    var popup = window.open("","_blank", options);    
	popup.document.open();
	popup.document.write("<html><head><title>");
	popup.document.write(popupName);
	popup.document.write("</title></head><body><img src='");
	popup.document.write(popupURL);
	popup.document.write("' border=0 /></body></html>");
	popup.document.close();
}
