
var dhtml = 'NO', no = 0, enlarge_font = 1;
if (document.layers)
    dhtml = 'NN'; // Netscape 4+ feature detected
if (document.all) 
    dhtml = 'IE'; // IE 4+ feature detected

function right(e)



 {



var msg = "Not Available";



if (navigator.appName == 'Netscape' && e.which == 3)



 {



    



return false;



}



else



if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2)



 {



   alert("Sorry, Not Available.");



    







return false;



}



return true;



}

function mover(object) {
    if (dhtml == 'IE') {
        eval(object + '.style.color = "#FF9900"');
        if (enlarge_font==1)
           eval(object + '.style.fontSize = "100%"');
        }
    else if (dhtml == 'NN') {
        eval('document.layers["' + object +
             'b"].moveBelow(document.layers["' + object + 'a"])');
        eval('document.layers["' + object + 'b"].visibility="hide"');
        eval('document.layers["' + object + 'a"].visibility="show"');
        }
    }

function mout(object) {
    if (dhtml == 'IE') {
        eval(object + '.style.color = "#FFFFFF"');
        eval(object + '.style.fontSize = "100%"');
        }
    else if (dhtml == 'NN') {
        eval('document.layers["' + object +
            'a"].moveBelow(document.layers["' + object + 'b"])');
        eval('document.layers["' + object + 'a"].visibility="hide"');
        eval('document.layers["' + object + 'b"].visibility="show"');
        }
   }

function dLink(href,text) {
    if (dhtml == 'IE') {
        document.write('<A HREF="'+href);
        document.write('" onMouseOut="mout(\'link'+no);
        document.write('\')" onMouseOver="mover(\'link');
        document.write(no+'\')" ID="link'+no+'">'+text);
        document.write('<\/A>');
        }
    else if (dhtml == 'NN') {
        document.write('<LAYER NAME="link'+no);
        document.write('a" VISIBILITY="hide"><A HREF="');
        document.write(href);
        document.write('" onMouseOut="mout(\'link'+no);
        document.write('\')" CLASS="different">'+text);
        document.write('<\/A><\/LAYER><LAYER NAME="link');
        document.write(no+'b"><A HREF="'+href);
        document.write('" onMouseOver="mover(\'link'+no);
        document.write('\')" CLASS="normal">'+text);
        document.write('<\/A><\/LAYER>');
        }
    else {
        document.write('<A HREF="'+href);
        document.write('">'+text+'<\/A>');
        }
     no+=1;
   }

   document.onmousedown=right;



if (document.layers) window.captureEvents(Event.MOUSEDOWN); 





window.onmousedown=right;



