function qmailForIE() {
 $(document).ready(function(){$(".qmail").append(" (&#7841;&#0355;) quest&#0160;<&#0100;&#7885;&#0355;>&#0160;org");});
}

/* create payment button.  Date represents the day of event */
function createPaymentButton(mm,dd,yyyy) {
 var currDate=new Date();
 var eventDate=new Date(yyyy, mm-1, dd);
 var oneDay=1000*60*60*24;
 if ((Math.ceil((eventDate.getTime()-currDate.getTime())/(oneDay)))>=2) {
  $(document).ready(function(){
   $('.paymentButton').html('<p>You can also pay via PayPal:</p><form action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick"><input type="hidden" name="hosted_button_id" value="ZRLSUUHCFHN7G"><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"><img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"></form>');
  });
 }  
}
