<!--



function ChangeImages() {
    if (document.images) {
        for (var i=0; i<ChangeImages.arguments.length; i+=2)
        { 
            document[ChangeImages.arguments[i]].src = eval (ChangeImages.arguments[i+1] + ".src");
        }

       // document[imgName].src = eval(imgName + "on.src");
    }
}


function rollIn(imgName, imgObjName) {
    if (document.images) {
        document[imgName].src = eval(imgObjName + "on.src");
    }
}

function rollOut(imgName, imgObjName) {  // the normal onMouseOut function

    if (document.images){
        document[imgName].src = eval(imgObjName + "off.src");
    }
}


function loadNavImages()
{
    //on state
    img2on = new Image(); img2on.src = "/images/thison.gif";
    img3on = new Image(); img3on.src = "/images/this2on.gif";
    img4on = new Image(); img4on.src = "/images/thaton.gif";
    img5on = new Image(); img5on.src = "/images/that2on.gif";
    img6on = new Image(); img6on.src = "/images/otheron.gif";
    img7on = new Image(); img7on.src = "/images/other2on.gif";
    
    // off state
    img2off = new Image(); img2off.src = "/images/thisoff.gif";
    img3off = new Image(); img3off.src = "/images/spacer.gif";
    img4off = new Image(); img4off.src = "/images/thatoff.gif";
	img5off = new Image(); img5off.src = "/images/otheroff.gif";
    
    imgDoton = new Image(); imgDoton.src = "/images/img_dot_orange2.gif"; 
}

function loadHomePageImages()
{
    img1on = new Image(); img1on.src = "/images/emailon.gif";
    img1off = new Image(); img1off.src = "/images/emailoff.gif";
}


   function popWindow(url, hsize, wsize, winname)
   {
        window.open(url,winname,"Toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + wsize + ",height=" + hsize + "\"");
   }
   
   
   function bigImage(imgSrc)
    {
        //alert("hi " + imgSrc);
        popWindow('big_image.asp', '600', '600', 'bigImg');
    }

// -->