var quNum = 5; // Number of choices w/ the qu designator
function choose(me){
		/*
	###		This resets everything		###
	*/
	for(i=1;i<=quNum;i++){
		document.getElementById('qu'+i).className="unselected";
		document.getElementById('tab'+i).className="selectTab";
		document.orderForm.packs[i-1].checked=false;
	}
	/*
	###		Below reselects the proper choice		###
	*/
	
	//This will select the proper Row
	document.getElementById('qu'+me).className="selected";
	//This will select the proper tab
	document.getElementById('tab'+me).className="selectTabOn";
	//THis will select the proper radio Button
	document.orderForm.packs[5-(me)].checked=true;
	
	return checkForm();
}

function destShip(){
	document.getElementById('shipDom').className="hidden";
	document.getElementById('shipInt').className="hidden";
	document.getElementById('Submit').className="hidden";
	
	var sC = document.orderForm.scountry.value;
	if(sC==""){
		alert("Please Select A Country to Ship to");
		return false;
	}else{
		if(sC=='US' || sC == 'MH' || sC == 'VI' || sC == 'UM' || sC == 'PR'){
			document.getElementById('shipDom').className="";
			document.getElementById('Submit').className="";
			gDom=true;
		}else{
			document.getElementById('shipInt').className="";
			document.getElementById('Submit').className="";
			gDom=false;
		}
	}
		
	document.orderForm.bcountry.value=sC;
	return checkForm();
}
