var window_width;
var window_height;
var window_left;
var window_Top;

function testEnterKey(e) 
{
    if (!e)                 // Mozilla Firefox passes the event to the event handler as a parameter..
    {
        e = window.event;  // this gets around the missing event argument in IE
    }
    
        if (e.keyCode == 13) {
            e.cancelBubble = true;
            e.returnValue = false;
            Form1[e].click();
        }
    
 }

function PositionWindow()
{
	{
	if(screen.height <= 480) 
	{
		window_width = screen.width;
		window_height = screen.height;
	} 
	else {
	    window_width = screen.width;            
	    window_height = screen.height;
	}
	window_left = (screen.width-window_width)/2;
	window_top = (screen.height-window_height )/3;
	}
}
function OpenHelp()
{
    PositionWindow();
	window.open('../Help/frmOnlineHelp.aspx', 'SmartWindow', 'toolbar=no,scrollbars=yes,resizable=yes,alwaysRaised=yes,dependent=yes,width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + '');
	window.self.focus;
}

function OpenHint()
{
	PositionWindow();
	window.open('../Help/frmCategoryHint.aspx','SmartWindow','toolbar=no,scrollbars=yes,resizable=yes,width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + '');
	window.self.focus;
}
function OpenCatInfo()
{
	PositionWindow();
	window.open('../Help/frmCategoryInfo.aspx','SmartWindow','toolbar=no,scrollbars=yes,resizable=yes,width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + '');
	window.self.focus;
}
function OpenSectorInfo()
{
	PositionWindow();
	window.open('../Help/frmSectorInfo.aspx','SmartWindow','toolbar=no,scrollbars=yes,resizable=yes,width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + '');
	window.self.focus;
}
function OpenCatIndex()
{
	PositionWindow();
	//window.open('../Help/frmCategoryIndex.aspx','SmartWindow','toolbar=no,scrollbars=yes,resizable=yes,width=' + 480 + ',height=' + 480 + ',top=' + ((screen.height - 460) / 2) + ',left=' + ((screen.width - 480) / 2) + '');
	window.open('../Help/frmCategoryIndex.aspx','SmartWindow','toolbar=no,scrollbars=yes,resizable=yes,width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + '');
	window.self.focus;
}
	function OpenImageWindow()
	{
	    PositionWindow();
	    window.open('../UIForms/frmDisplayImage.aspx', 'SmartWindow', 'toolbar=no,scrollbars=yes,resizable=yes,width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + '');		
//		window.open('../UIForms/frmDisplayImage.aspx', 'SmartWindow', 'toolbar=yes,scrollbars=yes,resizable=yes');
		window.self.focus;
	}

function SetFocus()
{
	window.focus();
}

function CloseWindow()
{
	window.close();
}

