function showhide(show,hide)
{
	var obj_show=document.getElementById(show);
	var obj_hide=document.getElementById(hide);
	
	if (obj_show!=null) {
		obj_show.style.display="";
	}
	
	if (obj_hide!=null) {
		obj_hide.parentNode.removeChild(obj_hide);
	}
}
