<!--
function right(e) 
   {var msg="The right click was temporarily disabled by the \nBautista Family Webmaster while you are in our website!";
    if (navigator.appName == 'Netscape' && 
         (e.which == 3 || e.which == 2))
       {alert(msg);
        return false;
       }
    else if (navigator.appName == 'Microsoft Internet Explorer' && 
            (event.button == 2 || event.button == 3)) 
            {alert(msg);
             return false;
            }
    return true;
   }

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;

function logclick(pagekey)
   {parent.frames[2].location = "/cgi-bin/lognthrow.cgi?pagekey=" + pagekey;}

//-->

