// JavaScript Document
function moveUpDown(status,obj)
{
	if (status =="SHOW")
	{ document.getElementById(obj).className="isShown";	}
	if (status =="HIDE")
	{ document.getElementById(obj).className="isHidden"; }
}

function moveDownAll(){
	for(i=1; i<=2; i++){
		var str;
		str="tab"+i;
		if (document.getElementById(str)) document.getElementById(str).className="isHidden";
	}
}

function searchTab(tab){
	str = "menusearch";
	if (document.getElementById(str)) {
		if (tab=="location")
			document.getElementById(str).className="tab-location";
		else if (tab=="zipcode")
			document.getElementById(str).className="tab-zipcode";
	}
}
