// Activate Cloaking Device
// Necessary to declare these here for browsers with less than JavaScript 1.1.
one=null;
two=null;
three=null;
four=null;
five=null;
countImages=5;

// Preload images to memory from #countImages#
if (document.images) {
        menuImagesOn = new Array(countImages);
        menuImagesOff = new Array(countImages);
        for(i = 1; i <= countImages; i++) {
                menuImagesOn[i] = new Image();
                menuImagesOn[i].src = "http://www.altria.com/images/rollovers/menu" + i + "_on.gif";
                menuImagesOff[i] = new Image();
                menuImagesOff[i].src = "http://www.altria.com/images/rollovers/menu" + i + "_off.gif";
        }
} 

// Called by onMouseOver - turn image "on".
function on_image(loc, img) {
        if (document.images) {
                loc.src = menuImagesOn[img].src;
        }
}

// Called by onMouseOut - turn image "off".
function off_image(loc, img) {
        if (document.images) {
                loc.src=menuImagesOff[img].src;
        }
}


function Redirect()
{
  window.location = "http://www.altria.com/search/search_technical.asp";
}

// Deactivate Cloaking  