// keep the next line as it is. need it to benefit from InterDev colors, but must comment it out.
// <SCRIPT LANGUAGE="JScript">
<!-- Hide from old browsers

//--run--
try {

if (document.all)
	document.onmousedown = noimg;
else if (document.layers)
	associateimages();

} catch(e) {}

//--func--
function noimg( lr ) {

	var msgimg = ""
	msgimg = "Our images may not be copied from our site. \n(c) 1996-2008 " + window.location.host

	if (document.all) {
		if (event.button == 2 || event.button == 3) {
			if (event.srcElement.tagName == "IMG") {
				alert( msgimg );
				return false;
			}
		}
	}
	if (document.layers) {
		if (lr.which == 3) {
			alert( msgimg );
			return false;
		}
	}
}

function associateimages() {
	for (i = 0; i < document.images.length; i++)
		document.images[i].onmousedown = noimg;
}