function show(id)
{
 document.getElementById(id).style.display='block';
}

function hide(id)
{
	alert("hiding" +id);
 document.getElementById(id).style.display='none';
}
function removead()
{
	hide("logo");
}



