﻿// JScript File
//function WindowOpen(url, width, height, menubar, left, top) {
//    window.open(url, '', 'Width=width, Height=height, menubar=menubar, screenX=left, screenY=top');
//}
function WindowOpen(url, Features) {
    window.open(url, '', Features);
}
function OpenPage()
{
msgWindow=window.open("","popup","scrollbars=no,toolbar=no,WIDTH=600,HEIGHT=150");
}