<!--
/****************************************************
This script toggles rows in tables from hiding/showing their content.
****************************************************/

	function toggle(id) {	
		if(document.getElementById(id).style.display=='block')
			{
			document.getElementById(id).style.display='none';
			document.getElementById(id).style.visibility='hidden';
			//alert('Its hidden now');
			}
		else 
			{
			document.getElementById(id).style.display='block';
			document.getElementById(id).style.visibility='visible';
			//alert('Its displaying now');
			}
	}

// -->