function showblock(id) 
{
	document.getElementById(id).style.display = 'block';
}

function hideblock(id) 
{
	document.getElementById(id).style.display = 'none';
}


