	function show_kevin(tip){
	tip = "tip"+tip;
			document.getElementById(tip).style.display = "block";
	}
	
	function hide_kevin(tip){
			document.getElementById("tip"+tip).style.display = "none";
}