function myFunction(id){
	var e1 = document.getElementById("searchButton");
	var e = document.getElementById("org_type");
	var origin_id = document.getElementById("origin_id");
	var art_form_id = document.getElementById("art_form_id");
	var artist_type_id = document.getElementById("artist_type_id");	
	var theme_id = document.getElementById("theme_id");
	
	
	var artFormRow = document.getElementById("artFormRow");
	var arabcountryRow = document.getElementById("arabcountryRow");
	var orgTypeRow = document.getElementById("orgTypeRow");
	var generalThemes = document.getElementById("generalThemes");
	
	
	if (id==1){ //search artist
		if (artFormRow) artFormRow.style.display="block";
		if (arabcountryRow) arabcountryRow.style.display="block";
		if (orgTypeRow) orgTypeRow.style.display="none";
		if (generalThemes) generalThemes.style.display="none";
		if (e) e.selectedIndex = 0;
		if (theme_id) theme_id.selectedIndex = 0;
		e1.innerHTML = '<img src="images/search_btn.png" name="searchBtn" value="Search" onclick="xajax_searchUsers(1, 20, xajax.getFormValues(\'filterForm\'), \'grid_user_front_end.tpl\', \'front_end_user_grid_buttons.tpl\', \'\')" /><img src="images/clear_btn.png"  onClick="clearForm();"  />';
	}else{ //search organization
		if (artFormRow) artFormRow.style.display="none";
		if (arabcountryRow) arabcountryRow.style.display="none";
		if (orgTypeRow) orgTypeRow.style.display="block";		
		if (origin_id) origin_id.selectedIndex = 0;
		if (art_form_id) art_form_id.selectedIndex = 0;
		if (artist_type_id) artist_type_id.selectedIndex = 0;
		
		var val = e.options[e.selectedIndex].value;
		if (val==2){
			if (generalThemes) generalThemes.style.display="block";
		}
		else{
			if (generalThemes) generalThemes.style.display="none";
			if (theme_id) theme_id.selectedIndex = 0;
		}
		e1.innerHTML = '<img src="images/search_btn.png" name="searchBtn" value="Search" onclick="xajax_searchOrganizations(1, 20, xajax.getFormValues(\'filterForm\'), \'grid_organization_front_end.tpl\', \'front_end_organization_grid_buttons.tpl\', \'\')" /><img src="images/clear_btn.png"  onClick="clearForm();"  />';
	}
}

function checkOrtType(val){
	if (val==2){
		document.getElementById("generalThemes").style.display="block";
	}else{
		document.getElementById("generalThemes").style.display="none";
	}
}

function clearForm(){
	var org_type = document.getElementById("org_type");
	var keyword = document.getElementById("keyword");
	var theme_id = document.getElementById("theme_id");
	var state_id = document.getElementById("state_id");
	var country_id = document.getElementById("country_id");
	var artistOrOrg = document.getElementById("artistOrOrg");
	var origin_id = document.getElementById("origin_id");
	var art_form_id = document.getElementById("art_form_id");
	var artist_type_id = document.getElementById("artist_type_id");
	
	if (keyword) keyword.value="";
	if (org_type) org_type.selectedIndex = 0;
	if (theme_id) theme_id.selectedIndex = -1;
	if (state_id) state_id.selectedIndex = 0;
	if (country_id) country_id.selectedIndex = 0;
	if (artistOrOrg) artistOrOrg.selectedIndex = 0;
	if (origin_id) origin_id.selectedIndex = 0;
	if (art_form_id) art_form_id.selectedIndex = -1;
	if (artist_type_id) artist_type_id.selectedIndex = -1;
	
}



	 
