<!--


var errormsg="No Right click allowed.";

function openchild(thisurl){
msgWindow=window.open( thisurl,'subwindow','toolbar=no,location=no,directories=no,status=yes,scrollbars=no,menubar=no,resizable=yes,width=450,height=455');

}

function mouseclick(evt) {
/*	if (document.layers) rc = (evt.which==3);
	if (document.all)    rc = (event.button==2);
	if (rc) {
		alert(errormsg);
		return false;
	}*/
}

if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=mouseclick;
// -->