function toggle_visibility(id, id1)
{     
	  if (id1==0)
	  {
		document.getElementById(id).style.display = 'block';
	  }
	  else
	  {
	     document.getElementById(id).style.display = 'none';
	  }

		  
}

