function FormatAddToCart(thisForm) {
   var saveName  = thisForm.NAME.value;
   var savePrice = thisForm.PRICE.value;
   var newPrice  = thisForm.PRICE.value*1;

	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;
	if ( thisForm.NVAR04 != null ) thisForm.NAME.value += "; " + thisForm.NVAR04.value;
	if ( thisForm.NVAR05 != null ) thisForm.NAME.value += "; " + thisForm.NVAR05.value;
	if ( thisForm.NVAR06 != null ) thisForm.NAME.value += "; " + thisForm.NVAR06.value;
	if ( thisForm.NVAR07 != null ) thisForm.NAME.value += "; " + thisForm.NVAR07.value;
	
	AddToCart(thisForm);

   thisForm.NAME.value     = saveName;
   thisForm.PRICE.value    = savePrice;
}
