<!-- // Used to open URL in a new window -->
function loadNew(url) 
{
window.open(url,'','scrollbars=yes,menubar=no,height=768,width=1041,resizable=yes,toolbar=no,location=no,status=no'); 
}

<!-- // Used to expand or hide page section -->
function showSection(sectionId)
{
	var sec = document.getElementById(sectionId);
	sec.style.display=(sec.style.display=='none')?'block':'none';
}

<!-- // Used by agency selection form -->
function selectBureau()
{
document.formAgencyList.action="/bgfPortal/agencyDocs.do?<%=ConstantsView.REQP_ACTION_OVERRIDE%>=<%=ConstantsView.REQP_ACTION_OVERRIDE_SHOWBUREAUS%>";
document.formAgencyList.submit();
}

function submitAgencySearch()
{
document.formAgencyList.submit();
}
<!-- Used by agency selection form - End -->

<!-- Used by feedback form -->
function PlaySound(soundobj) {
  var thissound=document.getElementById(soundobj);
  thissound.Play();
}
<!-- Used by feedback form - End -->
