function btnhvr(elm,tog){
		if (tog == 1) {
			elm.style.color = '#afa9a5';
			elm.style.textDecoration = "underline";
			elm.style.cursor = "pointer";
			
		}
		if (tog == 0) {
			elm.style.color = '#545454';
			elm.style.textDecoration = "none";
			elm.style.cursor = "default";
		}
	}