function show(x)
{
var p = document.getElementById(x);
p.style.display="block";
}

function hide(x)
{
x.style.display="none";
}