function ChooseTrade(varOption){
	if (varOption!="") {
		//document.form.traderequired1.value = varOption;
		document.frmSS10.elements["CustomFields[27]"].value = varOption;
		document.frmSS10.submit.focus();
		document.frmSS10.fullname.focus();
	}
}

function ChooseEmergencyTrade(varOption){
	if (varOption!="") {
		//document.form.traderequired1.value = "Emergency - " + varOption;
		document.frmSS10.elements["CustomFields[27]"].value = "Emergency - " + varOption;
		document.frmSS10.timeframe.value = "Today/Urgent";
		document.frmSS10.submit.focus();
		document.frmSS10.fullname.focus();
	}
}

function ChooseTradeAuto(varOption){
	if (varOption!="") {
		document.frmSS10.elements["CustomFields[27]"].value = varOption;
		//document.form.submit.focus();
		//document.form.fullname.focus();
	}
}