function FUN_JSC_V00_PRC_Open_New_Window_01_01(st_Href, nu_Window_Width, nu_Window_Height, st_Window_Name) 
{
	if (document.all)
        var xMax = screen.width, yMax = screen.height;
    else
	{
        if (document.layers)
            var xMax = window.outerWidth, yMax = window.outerHeight;
        else
            var xMax = 640, yMax=480;
	}

    var xOffset = (xMax - nu_Window_Width)/2, yOffset = (yMax - nu_Window_Height)/2;
	
	var windowName = st_Window_Name;


    var features =
        'width='        + nu_Window_Width +
        ',height='      + nu_Window_Height +
        ',directories=' + (0) +
        ',location='    + (0) +
        ',menubar='     + (0) +
        ',scrollbars='  + (1) +
        ',status='      + (0) +
        ',toolbar='     + (0) +
        ',resizable='   + (1) +
		',screenX='		+ xOffset +
		',screenY='		+ yOffset +
		',top='			+ yOffset +
		',left='		+ xOffset;

//    window.open (st_Href, windowName, features);
    top.window_handle = open (st_Href, windowName, features);
    top.window_handle.focus();
}




function FUN_JSC_V00_PRC_Open_New_Window_02_01(st_Href, nu_Window_Width, nu_Window_Height, st_Window_Name) 
{
	if (document.all)
        var xMax = screen.width, yMax = screen.height;
    else
	{
        if (document.layers)
            var xMax = window.outerWidth, yMax = window.outerHeight;
        else
            var xMax = 640, yMax=480;
	}

    var xOffset = (xMax - nu_Window_Width)/2, yOffset = (yMax - nu_Window_Height)/2;
	
	var windowName = st_Window_Name;


    var features =
        'width='        + nu_Window_Width +
        ',height='      + nu_Window_Height +
        ',directories=' + (0) +
        ',location='    + (0) +
        ',menubar='     + (0) +
        ',scrollbars='  + (0) +
        ',status='      + (0) +
        ',toolbar='     + (0) +
        ',resizable='   + (0) +
		',screenX='		+ xOffset +
		',screenY='		+ yOffset +
		',top='			+ yOffset +
		',left='		+ xOffset;

//    window.open (st_Href, windowName, features);
    top.window_handle = open (st_Href, windowName, features);
    top.window_handle.focus();
}




function FUN_JSC_V00_PRC_Open_New_Window_03_01(st_Href, st_Window_Name) 
{
	var windowName = st_Window_Name;


    var features =
        'width='        + (screen.availWidth - 10) +
        ',height='      + (screen.availHeight - 10) +
        ',directories=' + (0) +
        ',location='    + (0) +
        ',menubar='     + (0) +
        ',scrollbars='  + (1) +
        ',status='      + (1) +
        ',toolbar='     + (1) +
        ',resizable='   + (1) +
		',screenX='		+ 0 +
		',screenY='		+ 0 +
		',top='			+ 0 +
		',left='		+ 0;

//    window.open (st_Href, windowName, features);
    top.window_handle = open (st_Href, windowName, features);
    top.window_handle.focus();
}




function FUN_JSC_V00_PRC_Open_New_Window_04_01(st_Href, st_Window_Name)
{
	NewWindow = window.open(st_Href, st_Window_Name, "status=no, scrollbars=yes, resizable=yes, toolbar=yes, width="+ (screen.availWidth - 10) + ", height=" + (screen.availHeight - 10) + ", top=0, left=0");
}

