//no right click
function buttoncheck(e) {
	if (document.all && event.button==2) {
		alert("All Images Copyrighted by the Artist")
		return false
	}
	if (document.layers && e.which==3) {
		alert("All Images Copyrighted by the Artist")
		return false
	}
}

function closewindow() {
	if (document.all) {
		document.all.orderwindow.style.visibility="hidden"
	}
	if (document.layers) {
		document.orderwindow.visibility="hidden"
	}
}

if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=buttoncheck;
