<!-- Hide from non-javascript compatible browsers



//-----------------------poping window ---------------------------------




function pop_win(filename,haba,takasa) {

  fileURL=filename;
  winsize= 'scrollbars=yes,width=' + haba + ',height=' + takasa;

  self.window.name="popupp"
  w = window.open('', 'wn', winsize);
  if (w != null) {
    if (w.opener == null) {
      w.opener = self;
    }
    w.location.href = fileURL;
  }
}



// End hiding -->


