//====================================================================================
//  This script will combine a number of fields to create a single NAME field.
//  This NAME field will then be passed to function addToCart saved within nopcart.js
//==================================================================================== 

function FormatAddToCart(thisForm) {
   var saveName  = thisForm.NAME.value;
   var saveQty   = thisForm.QUANTITY.value;
   var savePrice = thisForm.PRICE.value;
   var saveIdNum = thisForm.ID_NUM.value;
   var saveShip  = thisForm.SHIPPING.value;

	if ( thisForm.NVAR != null )   thisForm.NAME.value += thisForm.NVAR.value;
	if ( thisForm.NVAR01 != null ) thisForm.NAME.value += "; " + thisForm.NVAR01.value;
	if ( thisForm.NVAR02 != null ) thisForm.NAME.value += "; " + thisForm.NVAR02.value;
	if ( thisForm.NVAR03 != null ) thisForm.NAME.value += "; " + thisForm.NVAR03.value;
	
	AddToCart(thisForm);

	thisForm.QUANTITY.value = saveQty;
	thisForm.PRICE.value    = savePrice;
	thisForm.ID_NUM.value   = saveIdNum;
	thisForm.NAME.value     = saveName;
	thisForm.SHIPPING.value = saveShip;
}