/**
* buyFoxy.js
*
* (c) 2005, Foxy Originals, Inc. All rights reserved.
*****************************************************/

function submitBuyFoxy( targetRegion ){

	// It's confusing if someone picks a province or state
	// and the opposite is still selected, so first set it to
	// null
	if( targetRegion == "CANprovince" ){
		document.buyFoxy.USstate.value = 'null';
	}else if( targetRegion == "USstate" ){
		document.buyFoxy.CANprovince.value = 'null';
	}
	
	// Don't submit the form if they didn't pick a prov or state
	if( document.buyFoxy.CANprovince.value == 'null' && document.buyFoxy.USstate.value == 'null' ){
		return;
	}else{
		document.buyFoxy.submit();
	}
}