// JavaScript Document

var message="Legal Warning:  All text, images, graphics, and content of website, e-mails, DVD, video, printed matter, and all other materials are copyrighted by and property of TLC Worldwide, INC. Any unauthorized reproduction, use, copying or distribution of TLC property by persons, companies, or competitors will be caught and prosecuted to the fullest extent of the law.  Federal law provides severe penalties for unauthorized reproduction, use, copying or distribution of copyrighted material. (Title 17, U.S.C., Sections 501 & 506).  The FBI (Federal Bureau of Investigation) investigates allegations of criminal copyright infringement. (Title 17, U.S.C., Section 506).";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// --> 
