function blockError(){
	return true;
}

window.onerror = blockError;

function noRightClick() {
	if (event.button==2) {
		alert('You may not right mouse click this page.')
	}

}
document.onmousedown=noRightClick

function update(url) 
{
	document['PageImage'].src=url;
	return;
}

