<!-- Hide Script
var smallwindow = null;
function setEvent() {
     return false;
}
function historywin2(filename,i_height,i_width) {
    fileURL=filename;
    i2_height=i_height;
    i2_width=i_width;

     if (parseInt(navigator.appVersion) < 4) {
        if (smallwindow != null) smallwindow.close();
     }
    timerID= setTimeout('Opener(fileURL,i2_height,i2_width)',100);
                              }
function Opener(winname,i_height,i_width){
  var winopts="top=1,toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=no,resizable=yes,copyhistory=0";
  winopts = winopts + ",height=" + i_height + ",width=" + i_width
  filename = winname;
  winname = "historywin"
  // smallwindow = window.open(filename,winname,winopts)
  smallwindow = window.open(filename,winname, winopts)
  smallwindow.focus()

  if( navigator.appVersion.indexOf("(X11") != -1 || navigator.appVersion.indexOf("(Mac") != -1)
       smallwindow = window.open(filename,winname, winopts)
  if( navigator.appVersion.indexOf("MSIE") == -1 )
      smallwindow.mainWin = this;
      WindowFocus();
        }
function WindowFocus(){
   if( navigator.appVersion.indexOf("2.") == -1 &&   navigator.appVersion.indexOf("MSIE") == -1 )
       smallwindow.focus();
}

// --End Hiding Here -->

