var clickmessage="This image is copyrighted, and it is owned by Mattel.  You may not reproduce, distribute, publish, transmit, modify, adapt, translate, display, sell, license, publicly perform, prepare derivative works based upon, or otherwise use or exploit this image."

function disableclick(e) {
	if (document.all) {
		if (event.button==2||event.button==3) {
			if (event.srcElement.tagName=="IMG") {
				alert(clickmessage);
				return false;
			}
		}
	} else if (document.layers) {
		if (e.which == 3) {
			alert(clickmessage);
			return false;
		}
	} else if (document.getElementById) {
		if (e.which==3&&e.target.tagName=="IMG") {
			alert(clickmessage)
			return false
		}
	}
}

function associateimages(){
	for(i=0;i<document.images.length;i++)
		document.images[i].onmousedown=disableclick;
}


if (
	(location.hostname != "dev.hotwheelscollectors.com" && location.hostname != "dev.hotwheelscollectors.com.eshq.mattel.com") &&
	(location.hostname != "estwr-12-41" && location.hostname != "estwr-12-41.eshq.mattel.com") &&
	(location.hostname != "estwr-12-40" && location.hostname != "estwr-12-40.eshq.mattel.com") &&
	(location.hostname != "estwr-12-21" && location.hostname != "estwr-12-21.eshq.mattel.com") &&
	(location.hostname != "estwr-12-33" && location.hostname != "estwr-12-33.eshq.mattel.com") &&
	(location.hostname != "estwr-12-20" && location.hostname != "estwr-12-20.eshq.mattel.com")
	) {
	
	if (document.all)
		document.onmousedown=disableclick
	else if (document.getElementById)
		document.onmouseup=disableclick
	else if (document.layers)
		associateimages()
}
