function orderToners() {
    var inpObjs = document.getElementsByTagName("INPUT");
    var hasQuan = false;

    for(x=0; inpObjs[x]; x++)
    {
     var objName = inpObjs[x].name;
     if(objName.match(/vwquantity/))
     {
       var objVal = inpObjs[x].value * 1;
       if(objVal > 0)
       { hasQuan = true;} }
    }

    if(hasQuan) {
     document.getElementById('frmOrder').submit();
    } else {
     alert("You have not selected any toner to add to your cart!\n\nPlease enter a quantity for the toner(s) you wish to purchase.");
    }
} 

