$(function() { 
  //// autoforward to payment provider 
   
  // make sure we are on the psp bounce page 
  if(document.formOCC) { 

    // hide all of the page content so it looks like a quick redirect (not foolproof) 
    $('div').hide(); 

    // for google analytics 
    //__utmLinkPost(document.formOCC); 

    // and submit the page 
    document.formOCC.submit(); 
  } 
}); 