<!--
function ConnectionLookup() {
	if (document.forms[0].ManufacturerID.options[document.forms[0].ManufacturerID.selectedIndex].value == 0) {
		alert("Please select a Manufacturer!");
	}
	else if (document.forms[0].RoverID.options[document.forms[0].RoverID.selectedIndex].value == 0) {
		alert("Please select your Rover Model!");
	}
	else if (document.forms[0].SoftwareID.options[document.forms[0].SoftwareID.selectedIndex].value == 0) {
		alert("Please select your Software!");
	}
	else if (document.forms[0].ModemID.options[document.forms[0].ModemID.selectedIndex].value == 0) {
		alert("Please select your Modem Type!");
	}
	else if (document.forms[0].StateID.options[document.forms[0].StateID.selectedIndex].value == 0) {
		alert("Please select your State/Province!");
	}
	else if (document.forms[0].DomainSupport.options[document.forms[0].DomainSupport.selectedIndex].value == "") {
		alert("Please indicate if your device supports domain names!");
	}
	else {
	frames['ConnectionFrame'].location.href = 'connection_guide_lookup.cfm?ScriptName=ConnectionLookup' + 
		'&ManufacturerID=' + document.forms[0].ManufacturerID.options[document.forms[0].ManufacturerID.selectedIndex].value + 
		'&RoverID=' + document.forms[0].RoverID.options[document.forms[0].RoverID.selectedIndex].value + 
		'&SoftwareID=' + document.forms[0].SoftwareID.options[document.forms[0].SoftwareID.selectedIndex].value + 
		'&ModemID=' + document.forms[0].ModemID.options[document.forms[0].ModemID.selectedIndex].value + 
		'&StateID=' + document.forms[0].StateID.options[document.forms[0].StateID.selectedIndex].value + 
		'&DomainSupport=' + document.forms[0].DomainSupport.options[document.forms[0].DomainSupport.selectedIndex].value;
	}
}

function ChangeManufacturer(thisField) {
	document.forms[0].RoverID.selectedIndex=0;
	document.forms[0].SoftwareID.selectedIndex=0;
	document.forms[0].ModemID.selectedIndex=0;
	frames['ConnectionFrame'].location.href = '/blank.htm'
	frames['ScriptFrame'].location.href = 'script_page.cfm?ScriptName=ChangeManufacturerConnection' + 
		'&ManufacturerID=' + document.forms[0].ManufacturerID.options[document.forms[0].ManufacturerID.selectedIndex].value + 
		'&RoverID=' + document.forms[0].RoverID.options[document.forms[0].RoverID.selectedIndex].value + 
		'&SoftwareID=' + document.forms[0].SoftwareID.options[document.forms[0].SoftwareID.selectedIndex].value + 
		'&ModemID=' + document.forms[0].ModemID.options[document.forms[0].ModemID.selectedIndex].value;
}

function ChangeRover(thisField) {
	document.forms[0].SoftwareID.selectedIndex=0;
	document.forms[0].ModemID.selectedIndex=0;
	frames['ConnectionFrame'].location.href = '/blank.htm'
	frames['ScriptFrame'].location.href = 'script_page.cfm?ScriptName=ChangeRoverConnection' + 
		'&RoverID=' + document.forms[0].RoverID.options[document.forms[0].RoverID.selectedIndex].value;
		
}

//-->	

