// 


var message="Copyrighted Material.\n\nContents & Graphics Copyright © Connie Campbell Bratcher & D.D. Watson.\nOur work is not Public Domain.\n\nPlease contact Connie\nfor permission to use or to copy beyond ministerial usage.\n\nPermission to reproduce up to three [3] selections at a time,\nonce or periodically, is hereby granted for ministerial usage\nonly, e.g. church periodicals, outreach ministries, speeches,\netc. as long as the scripture for each selection, the\nauthor's full name, and the author's copyright mark of\n© Connie Campbell Bratcher\nappears directly beneath each selection used.\n\nAll usage must be not-for-profit and must not be sold. All usage\nis limited to a maximum of three 3 selections at a time, per use.\nPlease contact the author for additional permissions.\n\nIf you do use selections for ministerial usage, the author would\nappreciate knowing so she can pray for your ministry.\n\nThank you for visiting.\nMay God richly bless you.";


// Don't edit below!



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;

//
