<!--
function goTab(nextTab) {
	// Validate Form
	//MM_validateForm('Name','','R');
	// if there are errors, abort
	//if (!document.MM_returnValue) return;
	// if no errors, set the nextPage to the value passed in
	//alert(document.forms[0].elements['currPage'].value);
	document.forms[0].elements['nextPage'].value = nextTab;
	//alert(document.forms[0].elements['nextPage'].value);
	// call submit action
	document.forms[0].submit();
}

//-->
