function DoCmnd(pnMode) {

	var nCty = document.getElementById('cboCountry').selectedIndex;

	// Search.
	var strTmp = "INam=" + document.getElementById('txtInternationalName').value +
	             "&Cty=" + document.getElementById('cboCountry').options[nCty].value;
	document.location.href = "CarHarnessResults.asp?" + strTmp;
	
}

function doGoogleMap() {
	document.MapData.submit();
}

function whatKey() {
	if (window.event.keyCode == 13) DoCmnd(0);
}

