/*
	2006.10.18	gricke
				Update link back to US direct channel 
	2006.10.16	gricke
				Update all functions, add 2 new functions to present button to open International when in direct channel (and back to US)
	2006.10.10	gricke
				Created
*/
function selectProduct(){
	var prod = document.dealerConfig.chooseProduct.options[document.dealerConfig.chooseProduct.selectedIndex].value;
	document.dealerConfig.marketType.selectedIndex = 0;
	document.dealerConfig.chooseUSInt.selectedIndex = 0;
	frames['IFrame'].location.href = 'blank.html';
	document.getElementById('directInternational').style.display = 'none';
	document.getElementById('directUS').style.display = 'none';
	if(prod == 'Hydro Excavation' || prod == 'Vaxjet'){
		document.getElementById('marketTypeSelect').style.display = 'block';
		document.getElementById('usIntSelect').style.display = 'none';
		document.getElementById('dealerTypeInfo').innerHTML = '';
	}else{
		document.getElementById('marketTypeSelect').style.display = 'none';
		document.getElementById('usIntSelect').style.display = 'block';
		document.getElementById('dealerTypeInfo').innerHTML = 'Dealer Channel';
	}
}
function selectUsInt(){
	frames['IFrame'].location.href = 'blank.html';
	var region = document.dealerConfig.chooseUSInt.options[document.dealerConfig.chooseUSInt.selectedIndex].value;
	if(region == 'us'){
		frames['IFrame'].location.href = 'USCanada_1247.asp';
	}else{
		frames['IFrame'].location.href = 'International_1248.asp';
	}
}
function selectMarketType(){
	var mType = document.dealerConfig.marketType.options[document.dealerConfig.marketType.selectedIndex].value;
	document.getElementById('directInternational').style.display = 'none';
	document.getElementById('directUS').style.display = 'none';
	
	if(mType == 'Industrial Fixed Base' || mType == 'Contractor' || mType == 'Utility'){
		frames['IFrame'].location.href = 'DirectContact_1404.asp';
		document.getElementById('dealerTypeInfo').innerHTML = 'Direct Contact U.S.';
		document.getElementById('directInternational').style.display = 'block';
	}else{
		frames['IFrame'].location.href = 'USCanada_1247.asp';
		document.getElementById('dealerTypeInfo').innerHTML = 'Dealer Channel';
		document.getElementById('directInternational').style.display = 'none';
	}
}
function goDirectInternational(){
	frames['IFrame'].location.href = 'International_1248.asp';
	document.getElementById('dealerTypeInfo').innerHTML = 'Direct Contact International';
	document.getElementById('directInternational').style.display = 'none';
	document.getElementById('directUS').style.display = 'block';
}
function goBackDirectUS(){
	frames['IFrame'].location.href = 'DirectContact_1404.asp';
	document.getElementById('dealerTypeInfo').innerHTML = 'Direct Contact U.S.';
	document.getElementById('directInternational').style.display = 'block';
	document.getElementById('directUS').style.display = 'none';
}