function SwitchBackground(elem, type){
	if(type == 'active'){
		elem.style.backgroundColor = '#FFFFFF';
		elem.style.cursor = "pointer";
	} else if(type == 'inactive'){
		elem.style.backgroundColor = '#FEFDCD';
	}
}
function SwitchBackgroundWinter(elem, type){
	if(type == 'active'){
		elem.style.backgroundColor = '#FFFFFF';
		elem.style.cursor = "pointer";
	} else if(type == 'inactive'){
		elem.style.backgroundColor = '#E3F5FF';
	}
}
function GoTo(url){
  window.location = url;
}

