<!--
 var message="\n(C) Copyright 2003 by The Results Group. All Rights Reserved.   \n\n    Material of EZRestaurantMarketing.com is Copyrighted.\n";
 function click(e) {
 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;
 // -->