function pushPrePop() {
	Block_Array_HideShowClear(new Array("PTOT_SPAN"), new Array(""), "hide");
	Block_Array_HideShowClear(new Array("POPO_SPAN"), new Array(""), "hide");
	Block_Array_HideShowClear(new Array("WPOT_SPAN"), new Array(""), "hide");
}

function hideShowResellerForm() {
	var rsel = document.getElementById('RSEL').value;
	if (rsel == '' || rsel == 'Owner') {
		Block_Array_HideShowClear(new Array("Reseller_Form"), new Array(""), "hide");  //Shows the Reseller Form
	} else {
		Block_Array_HideShowClear(new Array("Reseller_Form"), new Array(""), "show");  //Shows the Reseller Form
	}
}

function showNext(p1,p2,focusid) {

    var part1 = new Array(p1);
    var part2 = new Array(p2);
		Block_Array_HideShowClear(part1, new Array(""), "hide");  // hide the first part
		Block_Array_HideShowClear(part2, new Array(""), "show");  // show the second part
    window.scroll(0,0);
    document.getElementById(focusid).focus();
}

