function visible(id)
{
id.style.visibility="visible";
}

function hidden(id)
{
id.style.visibility="hidden";
}



