function show_hide(el){
	el = document.getElementById(el);
	el.style.display=el.style.display=="none"?"block":"none";
	return false;
}
