/*  This solves the problem of having the RealPlayer add-on installed
in the Firefox browser.  The bug is that if a page is navigated away from
and then back to user the FF back button, the submit items in a form
are not active.  The page needs to be reloaded to make the submit buttons
active.  

Affects  FF 5.0  with RealPlayer 1.0 add-on 

D. Nigra  6/2008   */

function onPageShow() {
  window.location.reload();
}



