
//---rollovers

function startRoll(){

if (document.images) {

var imageUrls = new Array("images/roll_pronc_on.gif","images/roll_pronc_off.gif","images/roll_prodnc_on.gif","images/roll_prodnc_off.gif","images/roll_proeznc_on.gif","images/roll_proeznc_off.gif","images/roll_proezdnc_on.gif","images/roll_proezdnc_off.gif","images/roll_prices_off.gif","images/roll_prices_on.gif","images/roll_home_on.gif");

        var imageUrlsLength = imageUrls.length
        var pic = new Array(imageUrlsLength);

        for (i=0; i<imageUrlsLength; i++) {

                pic[i] = new Image();

                pic[i].src = imageUrls[i];

        }

}

}


function hiLite(imageName) {

        if (document.images) {

                //top.document.images[imageName].src = "images/" + imageName + "on.gif";
                document.images[imageName].src = "images/" + imageName + "on.gif";

        }

}

function backNormal(imageName) {

        if (document.images) {

                //top.document.images[imageName].src = "images/" + imageName + "off.gif";
                document.images[imageName].src = "images/" + imageName + "off.gif";

        }

}

function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//-->