function hideShow(elem) {
	var hS = document.getElementById(elem);
	if (hS.style.display=='none') { hS.style.display='block' ; return } ;
	if (hS.style.display=='block') { hS.style.display='none' ; return } ;
}