function openJsWin(winName, winLocation, winWidth, winHeight)	{
	winWidth = parseInt(winWidth);
	winHeight = parseInt(winHeight);
	var winOptions = '';
	if ((winName != '') && (winLocation != '') && (winWidth > 0) && (winHeight > 0))	{
		var winOptions = 'width=' + winWidth + ',height=' + winHeight + ',innerWidth=' + winWidth + ',innerHeight=' + winHeight + ',left=50,top=50,screenX=50,screenY=50,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,dependent=yes,directories=no,hotkeys=yes';
		winObj = window.open(winLocation, winName, winOptions);
		winObj.focus();
	}
}

function openJsWin2(winLocation, winName, winWidth, winHeight)   {
        winWidth = parseInt(winWidth);
        winHeight = parseInt(winHeight);
        var winOptions = '';
        if ((winName != '') && (winLocation != '') && (winWidth > 0) && (winHeight > 0))        {
                var winOptions = 'width=' + winWidth + ',height=' + winHeight + ',innerWidth=' + winWidth + ',innerHeight=' + winHeight + ',left=50,top=50,screenX=50,screenY=50,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,dependent=yes,directories=no,hotkeys=yes';
                winObj = window.open(winLocation, winName, winOptions);
                winObj.focus();
        }
}


