
<!-- hide from browsers that do not know JavaScript
if (document.images) {            
            img1on=new Image();   img1on.src="images/li_websol2.gif"; 
            img2on=new Image();   img2on.src="images/li_soft2.gif"; 
            img3on=new Image();   img3on.src="images/li_multi2.gif"; 
            img4on=new Image();   img4on.src="images/li_advt2.gif"; 
                        
            
            img1off=new Image();  img1off.src="images/li_websol1.gif"; 
            img2off=new Image();  img2off.src="images/li_soft1.gif"; 
            img3off=new Image();  img3off.src="images/li_multi1.gif"; 
            img4off=new Image();  img4off.src="images/li_advt1.gif"; 
                        
        }
    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")

-->