/* This package contains functions for common block display actions */

function switchBlock(Id){
	blckId = "blk" + Id;
	if (document.getElementById(blckId).style.display == "none")
	{
	document.getElementById(blckId).style.display = "block";
	}
	else
	{
	document.getElementById(blckId).style.display = "none";
	}
}

