var allimgs;

var message = 'All images are copyright Skywrite.com. Unauthorized use is strictly prohibited. Contact us for terms of use.';

window.onload = function () {
	allimgs = document.body.getElementsByTagName("img");

	for (var i = 0; i < allimgs.length; i++) {
		allimgs[i].oncontextmenu = function () {
		
			alert(message);
			return false;
		}
	}
}
