var supported_x5 = (document.getElementById || document.all);
var shown_x5 = new Array();
if (supported_x5)
{
	document.write("<STYLE TYPE='text/css'>");
	document.write(".para {display: none}");
	document.write("</STYLE>");
}
function blocking_x5(i)
{
	if (!supported_x5)
	{
		alert('This link does not work in your browser.');
		return;
	}
	shown_x5[i] = (shown_x5[i]) ? false : true;
	current_x5 = (shown_x5[i]) ? 'block' : 'none';
	if (document.getElementById)
	{
		document.getElementById('ShowHide'+i).style.display = current_x5;
	}
	else if (document.all)
	{
		document.all['ShowHide'+i].style.display = current_x5;
	}
}

