//********************************redirect.js********************************//
//requires jquery.cookie.js -alan, 6/11/09
  
var strCampaignURL = "https://secure.ga0.org/02/match09pporgspl";
var strURL = window.location.href;
var blnCookieSet = false;
$.cookie('test', 'test');
if ($.cookie('test') == 'test') {
  blnCookieSet = true;
  $.cookie('test', null);
} else {
  blnCookieSet = false;
}
if (blnCookieSet == true) {
  if ($.cookie('pp_campaign') == null) {
    $.cookie('pp_campaign', strURL, { expires: 1, path: '/' }); 
    window.location=strCampaignURL+"?url="+strURL;
  }
}