// JavaScript Document

var copyright="Copyright %A9 HOLLYWOOD ESSENTIALS%AE, Inc., 2009\n \nThe contents of this website including photos, text, graphics, icons, and anything else contained herein are protected by German and International copyright laws.\n \nYou may not copy or reproduce anything from this website without prior written permission from HOLLYWOOD ESSENTIALS%AE, Inc.\n \nAll images in this site are the exclusive property of HOLLYWOOD ESSENTIALS%AE.  Any unauthorized use is prohibited and violators will be prosecuted to the fullest extent of the law.";

function click(e) {
	if (document.all) {
		if (event.button == 2) {
			alert(unescape(copyright));
			return false;
		}
	}else{
		if (e.which == 3) {
			alert(unescape(copyright));
			return false;
		}
	}
}

if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
//-->
