function additem(url,msg) {
 var msg_copy;
 if ( msg == "ves" ) {
  var msg_copy="CANCELLATION POLICY:\n" +
    "AFP only accepts written cancellations. Cancellations must be\n" +
    "received one week prior to the webinar to receive a refund. If\n" +
    "you miss a webinar, someone from your company may attend\n" +
    "in your place. AFP must receive all substitutions in writing one\n" +
    "week prior to the webinar.\n\n" +
    "REGISTRATION CONFIRMATION:\n" +
    "Confirmations will be e-mailed to all registrants after payment\n" +
    "is received. Confirmations will include a Web site address for\n" +
    "the webinar which contains the dial-in phone number and\n" +
    "presentation.\n\n" +
    "PROCEED TO REGISTER:\n" +
    "By selecting 'OK' you agree with and accept the conditions of\n" +
    "the AFP Webinar Series cancellation policy. Proceed to register...";
    if ( confirm(msg_copy) ) {
      document.location = 'http://www.afponline.ca/afpdb/additem_ca.html?' + url;
    }
 }
 if ( msg == "ves2" ) {
  var msg_copy="VES CD AND TAPE POLICY:\n" +
    "Please Note: Listening to a recording of an\n" +
    "AFP Webinar does not qualify for\n" +
    "continuing education credits as there is\n" +
    "no method of evaluation or record of attendance.";
    if ( confirm(msg_copy) ) {
      document.location = 'http://www.afponline.org/afpdb/additem.html?' + url;
    }
 }
}