function appear(show,id)
{
 elem = document.getElementById(id);
 elem.style.display = show;
}
