function rightclick(e){
	var msg="These images are copywrited by Topper Fine Jewelers and cannot be downloaded.";

	if (navigator.appName == 'Netscape' && e.which == 3){
		alert (msg);
		return false;
	}

	if (navigator.appName == 'Microsoft Internet Explorer' && event.button == 2 ) {
		alert (msg);
		return false;
	} else {
		return true;
	}
}

function trap() {
	if (document.images) {
		for (i=0;i<document.images.length;i++) {
			document.images[i].onmousedown = rightclick;
			document.images[i].onmouseup = rightclick;
		}
	}
}

//setup onload function
if(typeof window.addEventListener != 'undefined') {
	//.. gecko, safari, konqueror and standard
	window.addEventListener('load', trap, false);
} else if(typeof document.addEventListener != 'undefined') {
	//.. opera 7
	document.addEventListener('load', trap, false);
} else if(typeof window.attachEvent != 'undefined') {
	//.. win/ie
	window.attachEvent('onload', trap);
}

//** remove this condition to degrade older browsers
else {
	//.. mac/ie5 and anything else that gets this far
	
	//if there's an existing onload function
	if(typeof window.onload == 'function') {
		//store it
		var existing = onload;
		
		//add new onload handler
		window.onload = function() {
			//call existing onload function
			existing();
			
			//call trap onload function
			trap();
		}
	} else {
		//setup onload function
		window.onload = trap;
	}
}