function $(id){ return document.getElementById(id); }

function doQuantFix(elm) {
    //alert("cart");
	if (isNaN(parseInt(elm.value))){
		elm.value='0';
		return;
	} 
	if (parseInt(elm.value) < 0){
		elm.value='0';
	}
}

