<!-- CLOAK ON... 

function amI() {
        var agent       = navigator.userAgent;
        var version     = parseInt(navigator.appVersion);

        if( agent.indexOf('MSIE') != -1 ) {
                if( 4 <= version ) {
                        return true ;
                } 
                else {
                                        return false ;
                                }
        } 
        else {
                        if ((agent.indexOf('Mozilla') != -1) && ( 4 <= version )) {
                                return true ;
                        }
        }
        return false ;
}

var capable = amI();

//      Class arguments are...
//      nameOfImageObject,width, height, staticImage, mouseOverimage, HREF.


function Rollover(name,x,y,img1,img2,linkTo) {

        //var output = '<BR><IMG SRC="'+img1+'" WIDTH="'+x+'" HEIGHT="'+y+'" BORDER="0">' ;
        //output  = output.link(linkTo);
        
        var output = '<BR><A HREF="'+linkTo+'" onMouseOver="'+name
                +'.doOver()" onMouseOut="'+name+'.doOut()">'+'<IMG SRC="'
                +img1+'" WIDTH="'+x+'" HEIGHT="'+y+'" BORDER="0"></A>';
        
        document.write(output);
        if(!capable ) return ;
        this.over       = new Image(x,y);
        this.out        = new Image(x,y);
        this.over.src   = img2;
        this.out.src    = img1;
        this.link       = document.links[document.links.length-1];
        this.image      = document.images[document.images.length-1];
        
        // this.link.onmouseover   = new Function(name+".image.src = "+name+".over.src");
        // this.link.onmouseout    = new Function(name+".image.src = "+name+".out.src");
        
        this.doOver             = doOver ;
        this.doOut              = doOut ;
}

function doOver() {
        this.image.src = this.over.src;
}

function doOut() {
        this.image.src = this.out.src;
}


  conBrowser=0;
  function display(stuff) { window.status = stuff; }
  
function HighLight(musswitch) {
        if (conBrowser) {
                switchnavn = eval(musswitch + "on");
                document [musswitch].src = switchnavn.src;
                }
        }

function UndoHighLight(musswitch) {
        if (conBrowser) {
                switchnavn = eval(musswitch + "off");
                document [musswitch].src = switchnavn.src;
                }
        }

//-->