/**

 * RefreshPage.js 

 * mbk ver 1.0 4 Aug 2003

 * js component to Refresh page if Browser is Netscape 4.x

 * refers to variables 'browsername' and 'browserversion' declared in DetectBrowser.js

 */



function init() {

  setTimeout("window.onresize = redo", 1000);

}



function redo() {

  window.location.reload();

}



if ((browsername == "Netscape") && (browserversion == "4")) {window.onload = init};