
var message="Sorry, that function is disabled.\n\nContents & Graphics Copyright ©1991-2003 By: the NATIVE AMERICAN EMBASSY\nThe LENNI LENAPE PHOENIX     and\nChief Ambassador Jessie Renee Von Noaker\n\nAll Rights Reserved\n\nOur work is generally not Public Domain, and should NOT be used or taken from this site without Prior Written Permission.\n\nThank You for your understanding.\n\n          CONTACT:\n               NATIVE AMERICAN EMBASSY\n               Council of Elders\n               125 Bergen Street\n               Suite 1\n               Garfield, New Jersey  07026"; // Message for the alert box

function click(e) {if (document.all) {if (event.button == 2) {alert(message);return false;}}
{if (event.button == 3) {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;// -->
