function switchView(Switcher){
	oSwitcher = document.getElementById(Switcher);
	if (oSwitcher.style.display=='none') {
      oSwitcher.style.display='block';
    } else {
      oSwitcher.style.display='none';
    }
}

function switchHide(Switcher){
	oSwitcher = document.getElementById(Switcher);
	oSwitcher.style.display='none';
}
