function showHideDropDowns(){
	if (document.getElementById("SearchMore").checked == true){
		document.getElementById("LeftPane1_Basicsearch1_divSearchButton").style.visibility = "hidden";
		document.getElementById("MoreDropdowns").style.visibility = "Visible";
		document.getElementById("MoreDropdowns").style.height = "140px";
	}
	if (document.getElementById("SearchMore").checked == false){
		document.getElementById("LeftPane1_Basicsearch1_divSearchButton").style.visibility = "Visible";
		document.getElementById("MoreDropdowns").style.visibility = "Hidden";
		document.getElementById("MoreDropdowns").style.height = "1px";
	}
}
