function showHide(a,b) {
	var x=document.getElementById(a);
	x.style.display=b;
}

function show(a) { 
	showHide(a,"block"); 
}

function hide(a) { 
	showHide(a,"none"); 
}
