


// Used in all pages to submit a form and optionally set a hidden 
// form varaible called 'navigate' to direct navgiation
function submitForm(formName, navigateValue, qval) {
	
	var theForm = document.forms[formName];
	
	if (qval == "2"){
		theForm.Quantity1.value = "1 of 2";
	}
	if (qval == "3"){
		theForm.Quantity1.value = "1 of 3";
	}
	
	//alert (theForm);
	if (navigateValue != null && navigateValue != "") {
		theForm.navigate.value = navigateValue;
	}
    theForm.submit();
}

