/*
'     ================================================================================
'     COPYRIGHT (c) 2001 BY
'     theScreener.com SA, Nyon, SWITZERLAND
'     ================================================================================
'
'     This software is the property of theScreener.com SA.
'     This software or any  other copies  thereof may not  be provided, copied or
'     othervise  made  available to any  person  without  the written  permission
'     of theScreener.com SA.
'     ================================================================================
'
'     MODULE :         js/help.js
'     VERSION:         1.0.0
'     AUTHORS:         I. Moretti at theScreener.com SA, Nyon
'     CREATION Date:   17-Apr-2001
'     ================================================================================  */
// help pop-up
function popWindow_hp(psFile, psPath) {
	var winHP;
	var sURL = "";
	if (popWindow_hp.arguments.length > 1)
	{
		sURL = psPath + psFile + ".htm";
	}
	else
	{
		sURL = psFile + ".htm";
	}
	var features = "menubar=yes,status=no,scrollbars=yes,resizable=yes,width=770,height=550,left=0,top=0";
	eval(winHP + "=window.open('" + sURL + "','winHP','" + features+"')");
	eval(winHP + ".creator = self");
	if (window.focus) {
		eval(winHP + ".focus()");
		}
	}