function showhide(id)
{
	a=parseInt(id);  
	document.getElementById("showhide_" + a).style.display = "none";
}

