function errorHandler(Message, File, Line){
	//alert("ERROR:\n\nMessage:" + Message + "\nFile: " + File + "\nLine: " + Line);
	return true;
}

window.onerror=errorHandler;

function tellNavigation(){
	if(top.scrolledContent&&top.contentChanged){
		window.onscroll = top.scrolledContent;
		top.contentChanged();
	}else {
		setTimeout("tellNavigation()", 2222);
	}
}

function disableContentBody(){
	if(top.scrolledContent){
		top.disableContentBody();
	}
}

