<!--

function click(e) {

	var message="Sorry, can't right-click.\nCopyright 2001 - 2008 design-star* Melanie Cook";

	if (document.all) {
		if (event.button == 2)	{
			alert(message);
			return false;
		}
	}

	if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}

	}

	if (document.layers) {
		document.captureEvents(Event.MOUSEDOWN);

	}

document.onmousedown=click;
// -->