// JavaScript Document



function changeBindingOptions() {

	 

	 	var obj = document.quote;

		selectedBorder = obj.Border.options[obj.Border.selectedIndex].value;

	

		var strOptionFG =  "<select name=\"Border_Width\" id=\"Border_Width\" size=\"1\" " +

						" style=\"width:250px\" onChange=\"makequote()\" class=\"styleLabelCOR3\"> " +  

						" <option value='' class=\"styleLabelCOR3\">Choose A Stitch</option> " +						

						" <option value=\"3.50\" class=\"styleLabelCOR3\">1 1/4\" - Top Stitch</option> " +

						//Removed as of 8/4/10
						
						//" <option value=\"10.00\" class=\"styleLabelCOR3\">1 1/4\" - Blind Stitch</option>" +

						//" <option value=\"10.00\" class=\"styleLabelCOR3\">1 1/2\" - Blind Stitch</option>" +						

						" </select>";



		var strOptionOthers =  "<select name=\"Border_Width\" id=\"Border_Width\" size=\"1\" " +

					  	" style=\"width:250px\" onChange=\"makequote()\" class=\"styleLabelCOR3\"> " +

						" <option value=''>Choose A Stitch</option> " +		

						" <option value=\"3.50\" class=\"styleLabelCOR3\">1 1/4\" - Top Stitch</option> " +

						" <option value=\"4.00\" class=\"styleLabelCOR3\">2 1/4\" - Top Stitch</option> " +

						" <option value=\"10.00\" class=\"styleLabelCOR3\">2\" - Blind Stitch</option> " +
						
						//Removed as of 8/4/10
						
						//" <option value=\"10.00\" class=\"styleLabelCOR3\">2 3/4\" - Blind Stitch</option> " +

						" </select>";

		

		if (selectedBorder =="f" ||  selectedBorder == "g") {

			document.getElementById("borderOPT").innerHTML = strOptionFG;

		} 

		else {

			document.getElementById("borderOPT").innerHTML = strOptionOthers

		}

		

}

