<!-- Begin
function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert("All images, articles or other works are Copyrighted by the Light of the Word Ministries or the noted individual Contributor. No image, article or other works or portion of this Website can be copied, used or transmitted in any form whatsoever without written permission of the Light of the World Ministries or the noted individual Contributor. Copyright © 2004 - 2010 Light of the World Ministries  All rights reserved");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
//  End -->