function changeSearch(Val,Color,FontColor){
	document.getElementById(Val).style.backgroundColor=Color;
	if(FontColor != ''){
		document.getElementById(Val).style.color=FontColor;
	}
}
function BlockHide(Val){
	document.getElementById(Val).style.display='none';
}
function BlockSeek(Val){
	document.getElementById(Val).style.display='block';
}

