
      function print_card() {
        var words = "Printing or purchasing  cards costs.\n";
           words += "Are you sure you would like to continue with your order?";
       	var x = window.confirm(words);

       	if (x) { document.confirmform.submit(); }
      }

function print_list(theForm, theCheckbox, action) {
     // Set target elements
     var theElements = document.forms[theForm].elements[theCheckbox];
    // Loop through the elements
     for (var count = 0; count < theElements.length; count++) {
          theElements[count].checked = action;
     }
     
     
     document.forms[theForm].elements["printbut"].click()
     return false;
}