//====================================================================================================
//	Function Name	:	showBlock
//----------------------------------------------------------------------------------------------------
function showBlock(id1,id2)
{
	document.getElementById(id1).style.display = "block";
	document.getElementById(id2).style.display = "none";
}
