function keyPressHandler (eventObj)
{
    eventObj = (document.all) ? event : eventObj;
    var form = document.displayKeyPress;
    // NETSCAPE NAVIGATOR 4
    if (document.layers) {
        if (eventObj.which==201) {
			NewWindow('<%=webdir%>/iWizard/adm/info.asp','Info','400','400','no');
		}		
        return (true);
    
	// INTERNET EXPLORER 4+
    } else if (document.all) {
        if (eventObj.keyCode==201) {
			NewWindow('<%=webdir%>/iWizard/adm/info.asp','Info','600','400','no');
		}
        return (true);

    // Netscape 6/Gecko
    } else if (document.getElementById) {
        if (eventObj.which==201) {
			NewWindow('<%=webdir%>/iWizard/adm/info.asp','Info','400','400','no');
		}		
        return (true);
    }
    return (true);
}

function trapKeypressEvents ()
{
    // NETSCAPE NAVIGATOR 4
    if (document.layers) {
        document.captureEvents( Event.KEYPRESS );
        document.onkeypress = keyPressHandler;
    // INTERNET EXPLORER 4+
    } else if (document.all) {
        document.onkeypress = keyPressHandler;
    // Netscape 6/Gecko
    } else if (document.getElementById) {
        var targetObject = document;
        targetObject.addEventListener ("keypress",keyPressHandler,false);
    }
}
trapKeypressEvents ();