<!--
if (document.images) {            // Active Images

			
            img100on = new Image();      
            img100on.src = "/images/button_claimsquestion_on.gif"; 
            img101on = new Image();      
            img101on.src = "/images/button_claimslookup2_on.gif"; 
            img102on = new Image();      
            img102on.src = "/images/buttons_NASCC_on.jpg"; 
            img103on = new Image();      
            img103on.src = "/images/button_claimslookup3_on.gif"; 
			
            img100off = new Image(); 
            img100off.src = "/images/button_claimsquestion_off.gif"; 
            img101off = new Image(); 
            img101off.src = "/images/button_claimslookup2_off.gif"; 
            img102off = new Image(); 
            img102off.src = "/images/buttons_NASCC_off.jpg"; 
            img103off = new Image(); 
            img103off.src = "/images/button_claimslookup3_off.gif"; 
        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}
// -->