function changesearchmode_domain(thisform) {
	
	thisform.organism_description.disabled = true;
	thisform.organism_minscore.disabled = true;

	thisform.domain_id.disabled = false;
	thisform.domain_description.disabled = false;
	thisform.domain_minscore.disabled = false;
	thisform.domain_maxscore.disabled = false;
}

function changesearchmode_organism(thisform) {
	
	thisform.organism_description.disabled = false;
	thisform.organism_minscore.disabled = false;

	thisform.domain_id.disabled = true;
	thisform.domain_description.disabled = true;
	thisform.domain_minscore.disabled = true;
	thisform.domain_maxscore.disabled = true;
}
