<!--
function HideC(id,classname){
	var aryid = id.split(',');
	for (i=0; i<aryid.length; ++i){
		if(document.getElementById(aryid[i])){
			var style;
			if(classname!=null){
				style = classname;
			}
			else{
				style = '';
			}
			document.getElementById(aryid[i]).className = style
		}
	}
}

function GoHideC(id,value,classname){
	if(value!=null){
		if(value!=''){
			HideC(id);
		}
		else{
			HideC(id,classname);
		}
	}
}

function Preset(objSelect){
	if(objSelect == 'GBPROSGG2' || objSelect == 'GBPROSGG5') {
		with(window.document.form1.op1){
			options.length = 13;options[0].selected = 'true';
			options[1].text = 'Hunter White';
			options[2].text = 'Red White';
			options[3].text = 'Black White';
			options[4].text = 'Navy White';
			options[5].text = 'Royal White';
			options[6].text = 'Navy Hunter';
			options[7].text = 'Red Black';
			options[8].text = 'Black Tan';
			options[9].text = 'Burgundy Tan';
			options[10].text = 'Hunter Tan';
			options[11].text = 'Navy Tan';
			options[12].text = 'Black Burgundy';
		}
	}
	if(objSelect == 'GBPROSGG3') {
		with(window.document.form1.op1){
			options.length = 5;options[0].selected = 'true';
			options[1].text = 'Tan';
			options[2].text = 'Black';
			options[3].text = 'Navy';
			options[4].text = 'Hunter';
		}
	}
}

function DropDownPopulate(){
	var obj_sku = document.getElementById('sku')
	var sku_value = obj_sku.options[obj_sku.selectedIndex].value;
	GoHideC('procolor',sku_value,'none');
	Preset(sku_value);
}
//-->