//<![CDATA[
var sections = new Array('bgbdpartOne', 'bgbdpartTwo', 'bgbdpartThree', 'bgbdpartFour', 'bgbdpartFive');
function init() {
    show('bgbdpartOne');
    document.forms['bgbdigilincform'].elements['Name'].focus();
}
function show(section) {
    for (var i = 0; i < sections.length; i++) {
        if (sections[i] == section) {
            document.getElementById(sections[i]).style.display = 'block';
        } else {
            document.getElementById(sections[i]).style.display = 'none';
        }
    }
}
//]]>