function togglevisi(IDhere,IDhide1,IDhide2){
	if(IDhere.style.display == "none"){
		IDhere.style.display = "block";
		IDhide1.style.display = "none";
		IDhide2.style.display = "none";
	}

	else{
		IDhere.style.display = "none";
		IDhide1.style.display = "block";
		IDhide2.style.display = "none";
	}
}