<!--// No rightclick script v.2.5
var message="© 2001-2008 Rhonda™ - Rhonda Dyane!\n\The contents of this site are not Public Domain!\n\These pages are the personal property of Rhonda Dyane...\n\Please don't attempt to copy them in part or in full!"; 
// Message for the alert box
// 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;
//--> 
