<!--

document.write('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">')

var typeFocus = false
var isPopup = false

document.oncontextmenu = cmenu;
document.onkeydown = fnkey
document.onhelp = somehelp

function cmenu(){ return false }

function fnkey(){
	var k = window.event.keyCode
	if ((111<k)&&(k<124)){window.event.keyCode=505; return false}
	if (window.event.altKey){
		var p = "Use the on-screen controls to navigate through the Lifetime Library.<br ><br >For help, select 'Help' on the blue bar on the left, or view the Orientation."
		if (window!=window.top){window.top.requester(p,'OK',null,null,'Hint...')}
		return false
	}
	if (window.event.ctrlKey){
		var lst = ',31,32,33,34,35,36,37,38,39,45,46,67,86,88,'
		if (lst.indexOf(','+k.toString()+',') == -1){return false}
	}
	if (k==8){ if (!typeFocus){return false} }
	if (k==13){ 
		if (isPopup){window.close()} 
		try { enterK() } catch(e) {}
	}

//window.top.frames.crawl.document.all.crawlLine.innerText=k;
}

function somehelp(){
//	alert('help')
	return false
}

function typeFoc(bol){typeFocus = (bol=='1')}

-->

