/**
 *
 * @access public
 * @return void
 **/
function toggle(hide, show){
	document.getElementById(hide+'_container').style.display = "none";
	document.getElementById(show+'_container').style.display = "block";
}
