// JavaScript Document
// Event object processor - from JavaScript Bible sixth Edition page 694 ************
// This function with isEnterKey prevent the depression of the ENTER key from sending the form to // PayPal on input form items (for example the Quantity and Cost fields in the Zodiac Product 
// page. The only way to submit a form to PayPal is via a mouse click of the Add to Cart button. 
<!--
function processOnEnter(fld, evt) 
	{
	if (isEnterKey(evt)) 
		{
		return false;
		}
	return true;
	}
// -->

