function Div_Hide(Div) {
	MyDiv = document.getElementById(Div);
	MyDiv.style.display = 'none';
	}