<!--
var message="If interested in using One Church One Child of Florida's pictures please contact our Florida office at 850-414-5620 to request a copy of our stock photos.\n\nContents & Graphics Copyright ©2009 One Church One Child of Florida. All Rights Reserved.\n\nThank you for your interest in One Church One Child, A Florida Adoptions Agency."; // Message for the alert box

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;

//  End -->



