﻿// JScript File
//Function Opens Page in its own window
function PopupMaster(sPage,sHeight,sWidth)
{
    window.open(sPage,"Pic", 'resizable=0,HEIGHT='+sHeight+',WIDTH='+sWidth);
}
