/*
Date Inserted : September 10, 2002
Author : Cornelio S. Gallardo
Email : c.gallardo@alvion.com

Script Responsibilities : create foldout navigation

*/
var stylie = "<STYLE TYPE='text/css'><!--";
var endstylie = "--></STYLE>";

if (document.getElementById || document.all)
{
	document.write(stylie);
	document.write(".para {display:none;background-color:ffffff; top:0px; valing:top}");
	document.write(endstylie);
}

function blocking(x)
{
		nr = 'number'+x
			if (document.getElementById)
				{current = (document.getElementById(nr).style.display == 'block') ? 'none' : 'block';
				 document.getElementById(nr).style.display = current;}
			else if (document.all)
				{current = (document.all[nr].style.display == 'block') ? 'none' : 'block'
				 document.all[nr].style.display = current;}

}


