function Show(id)
{
	$(id).style.display='block';

}

function Unshow(id)
{
	$(id).style.display='none';
}
