function initActions()
{
	document.getElementById("currCustQuestion").style.display="block";
	document.getElementById("custAddressInfo").style.display="none";
	
	
	/*****Toggle the visibility of the Company Address section****/
	document.getElementById("currCustQuestion").onclick = function(){
	  if(document.getElementById("currCustNo").checked)
	  {
	    document.getElementById("custAddressInfo").style.display="block";
	  }
	  else if(document.getElementById("currCustYes").checked)
	  {
	    document.getElementById("custAddressInfo").style.display="none";
	  }
	
	}
	
}

//window.onload=initActions;

addLoadEvent(initActions);