function OpenWin(path) {
window.open(path,null,
    "height=600,width=950,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");

}

function OpenWinOfSize(path,width,height) {
var winparam = 'height=' + height + ',width=' + width + ',status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes'
window.open(path,null,winparam);

}

function OpenWinFrame(path,width,height) {
var winparam = 'height=' + height + ',width=' + width + ',status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no'
window.open(path,null,winparam);

}
