	function btnBackChange(e, t){
		if (t == "g"){
			document.getElementById(e).style.backgroundColor = '#0ca95a';	
			document.getElementById(e).style.cursor = "pointer";
		}else if (t == "b"){
			document.getElementById(e).style.backgroundColor = '#547bc8';	
			document.getElementById(e).style.cursor = "pointer";
		}
		
	}
	function btnBackChangeBack(e, t){
		if (t == "g"){
			document.getElementById(e).style.backgroundColor = '#0a8245';		
		}else if (t == "b") {
			document.getElementById(e).style.backgroundColor = '#1b438b';
		}
	}
	function goToP(e){
		window.location = "_home.php?p=" + e;
	}
	




