// JavaScript Document
// Event object processor - from JavaScript Bible sixth Edition page 694 ************
// This function with processOnEnter 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 isEnterKey(evt) 
	{
	evt = (evt) ? evt : ((window.event) ? window.event : null);
	var keyCode;
	if (evt) 
		{
        keyCode = (evt.keyCode) ? evt.keyCode : evt.which;
        }
	return (keyCode == 13);
    }
// -->