/* Javascript file */

		function showSubSec(id,style)
		{
			try
			{
				document.getElementById(id).style.display = style;
		  }
			catch(err)
		  {
			}
		}
