var qsSubmitted = false
function submitQS(f, b, c) {
	if(qsSubmitted) { return }
	qsSubmitted = true; b.value = 'Searching...'; b.disabled = true; f.submit()
}
function qsSetHidden(f) {
	if(f.cboGenderID.selectedIndex > 0) { f.cbxGenderID.value = f.cboGenderID.options[f.cboGenderID.selectedIndex].value }
}
function gsSetAction(f, t) {
	if(t=='C') {
		f.rdoAction[0].checked = true;
		f.action = 'SearchMovies.asp';	
	}
	else if(t=='R') {
		f.rdoAction[1].checked = true;
		f.action = 'SearchRentals.asp';
	}
}

