// popupmsg.js

function popupmsg( msg )
 {
 var pattern1 = /mail/i;
 var pattern2 = /Discs 1 and 2|Disc 3|Disc 4|Disc 5/;

 var result1 = pattern1.test( msg );
 var result2 = pattern2.test( msg );

 if( result2 )
  { alert( msg + " has been added to your shopping cart.\n\nMultiple item discounts don't apply to this item\n\nContinue shopping, or click on \"Your Shopping Cart\" to check out" ); }
 else if( result1 )
  { alert( msg + " has been added to your shopping cart.\n\nGet $10 off when you order 2 products\n\nGet $12 off when you order 3 or more products\n\nContinue shopping, or click on \"Your Shopping Cart\" to check out\n\nPlease be patient, your order must be processed manually\n\n" ); }
 else
  { alert( msg + " has been added to your shopping cart.\n\nGet $10 off when you order 2 products\n\nGet $12 off when you order 3 or more products\n\nContinue shopping, or click on \"Your Shopping Cart\" to check out" ); }
 return( 1 );
 }