/************************************************************************************
Usage  :   Web Page operations with JavaScript
*************************************************************************************
Author  :   Alex Bell
Started :   07/16/07
************************************************************************************/

// Open window with predefined Geometry
var ret;

void function OpenPage(URL, N, H, W, T, L)
{
    ret=window.open
    (URL,N,'scrollbars=no,menubar=no,height='+H+',width='+W+',top='+T+',left ='+L+',resizable=no,toolbar=no,location=no,status=no, copyhistory=no');
}
