function gotooffice(){
	var elem = document.getElementById('roffice');
	if (elem.value!='city') {
	  window.location.href = '/salecenter/' + elem.value + '';
	}
}

function hidemenu(id) {
	document.getElementById(id).style.display = "none";
}

function showmenu(id) {
	document.getElementById(id).style.display = "block";
}

function OnMenu(x) {
	x.style.borderColor = '#859d1b';
}

function OffMenu(x) {
	x.style.borderColor = '#FFFFFF';
}