
<!-- hide from browsers that do not know JavaScript
if (document.images) {            
            img1on=new Image();   img1on.src="images/hometop.jpg"; 
            
                        
        }
    function imgOn(imgName,txt) {
            if (document.images) {
                document[imgName].src = eval(imgName + "on.src");
            }
    }
    function imgOff(imgName,txt) {
            if (document.images) {
                document[imgName].src = eval(imgName + "off.src");        
            }
    }
    
function leapto(form) 
   {
   var myindex=form.dest.selectedIndex;

   if ((myindex==0) || (myindex==12)){
    alert("You must select a link to proceed.");
   }
   else{
   window.location=form.dest.options[myindex].value;
   }

   }

var message="Right click disabled.";


function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// hide ends -->
