function showhide(elm1, elm2)
{
	document.getElementById(elm1).style.display = 'block';
	document.getElementById(elm2).style.display = 'none';
}

