<!--

function cbWarning() {

	var i, elems, bCheck;

	bCheck = false;
	elems = document.forms.cartform.elements;

	for (i = 0; i < elems.length; i++) {

		if ( elems[i].type == 'checkbox' ) {
			if ( elems[i].checked ) {
				bCheck = true;
			}
		}
	}

	if ( !bCheck ) {
		alert("Please click the checkbox next to items you wish to add to your shopping cart.");
		return false;
	}

	return true;
}

function MM_openBrWindow(theURL,winName,features) 
{
  window.open(theURL,winName,features);
}

function cartFocus(focusElem) {

	var i, j;

	document.cartform.elements[focusElem].focus();
	document.cartform.elements[focusElem].select();
}

-->
