// JavaScript Document

function myHideShow(to_hide,to_show) {
	if (document.getElementById(to_hide)!= null){
			document.getElementById(to_hide).style.display="none";
	}
	if (document.getElementById(to_show)!= null){
			document.getElementById(to_show).style.display="block";
	}	
}