﻿// JScript File

<!--
    //CHANGE SUB-NAV ON ROLLOVER
    function ChangeDiv(Color1A, Color1B, Color2A, Color2B, Pos1A, Pos1B, Pos2A, Pos2B, Alpha) {
    
        //GRAY-OUT TITLES
        document.getElementById("title1").style.color = "#" + Color1A;
        document.getElementById("title2").style.color = "#" + Color1B;
        document.getElementById("title3").style.color = "#" + Color1B;
        document.getElementById("title4").style.color = "#" + Color1B;
    	
        //GRAY-OUT TITLE RULE	        
        document.getElementById("title1").style.backgroundPosition = "0 -" + Pos1A + "px";
        document.getElementById("title2").style.backgroundPosition = "0 -" + Pos1B + "px";
        document.getElementById("title3").style.backgroundPosition = "0 -" + Pos1B + "px";
        document.getElementById("title4").style.backgroundPosition = "0 -" + Pos1B + "px";
    	
        //GRAY-OUT ICONS	        
        document.getElementById("search1").style.backgroundPosition = "0 -" + Pos2A + "px";
        document.getElementById("search2").style.backgroundPosition = "0 -" + Pos2B + "px";
        document.getElementById("search3a").style.backgroundPosition = "0 -" + Pos2B + "px";
        document.getElementById("search4").style.backgroundPosition = "0 -" + Pos2B + "px";
    	
        //GRAY-OUT FORM FIELD BORDERS	        
        document.getElementById("<%=txtPartnumber.ClientID%>").style.borderColor = "#" + Color2A;
        document.getElementById("fields2").style.borderColor = "#" + Color2B;
        document.getElementById("fields3").style.borderColor = "#" + Color2B;
        document.getElementById("fields4").style.borderColor = "#" + Color2B;
        document.getElementById("fields5").style.borderColor = "#" + Color2B;

        //GRAY-OUT DEFAULT FORM FIELD VALUES            
        document.getElementById("fields2").style.color = "#" + Color1B;
        document.getElementById("fields3").style.color = "#" + Color1B;
        document.getElementById("fields4").style.color = "#" + Color1B;
        document.getElementById("fields5").style.color = "#" + Color1B;
   
        //GRAY-OUT RADIO BUTTONS (IE ONLY)
        document.getElementById("rb3").style.filter = "alpha(opacity = " + Alpha +")";
        document.getElementById("rb2").style.filter = "alpha(opacity = " + Alpha +")";
        document.getElementById("rb1").style.filter = "alpha(opacity = " + Alpha +")";

        //GRAY-OUT FORM FIELD LABELS	        
        document.getElementById("text1").style.color = "#" + Color1A;
        document.getElementById("text2").style.color = "#" + Color1B;
        document.getElementById("text3").style.color = "#" + Color1B;
        document.getElementById("text4").style.color = "#" + Color1B;
}
//-->

