﻿// JScript File

function ShowPopupWindow(path,width,height) {
    window.open(path, "", "width="+width+", height="+height+", status=no, scrollbars=yes, resizable=yes, menubar=no, location=no");
    return false;
}


