<!--
function submitenter(myfield,e)
{
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return true;

if (keycode == 13)
   {
   myfield.form.submit();
   return false;
   }
else
   return true;
}
//-->

function showshippingfields(mode) {

var shippingfields = document.getElementById('shippingfields');
if(shippingfields) {
	if(mode == 0) {
		shippingfields.style.display = 'none';
	}
	else {
		shippingfields.style.display = 'block';
	}
}

}

function CIDPOP_UP() {     window.open('/shop/data/elements/CID_images.html','EANITHING','toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=425,height=150');
}