function messageWindow( strTitle, strMessage ) {
	msgWindow = window.open("","messageWindow","width=300,height=100,resizable=0,scrollbars=0,menubar=0,toolbar=0,directories=0,location=0,status=0");
	msgWindow.document.write('<HEAD><TITLE>' + strTitle + '</TITLE></HEAD>');
	msgWindow.document.write('<div align="center"><font size="2"><b>' + strMessage + '</b></font></div>');
	msgWindow.focus();
}

am = "WARNING!\n\u00A9 Copyright BICA Gallery. All content within this site is protected\nby copyright laws. Unauthorized use is strictly prohibited.";
bV  = parseInt(navigator.appVersion);
bNS = navigator.appName=="Netscape";
bIE = navigator.appName=="Microsoft Internet Explorer";

function nrc(e) {
	if (bNS && e.which > 1){
		alert(am);
		return false;
	} else if (bIE && (event.button >1)) {
		alert(am);
		return false;
	}
}

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;

