<!--

// Prevent this page displaying on a printer
document.write('<link rel=stylesheet media="print" href="/common/print.css">');

// Prevent right click context menus

function right(e) {
	if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
		alert("Invalid Button");
		return false;
	}
	return true;
}

document.onmousedown=right;
document.onmouseup=right;

document.oncontextmenu=new Function("return false")


// Prevent left click select (mouse drag) text

//if the browser is IE4+
document.onselectstart=new Function ("return false")


//-->