<!-- // hide

function floatwin(dest,nam) {

  var x  = screen.width, y = screen.height,
      w  = x/2,  h  = y/3,
      sx = x/20, sy = y/20;

//  if (w < 100) { w = 101 };
//  if (h < 100) { h = 101 };
  nam = window.open(dest, nam, "toolbar=yes, scrollbars=yes, resizable=yes, width=w, height=h");
//  nam.resizeTo(x,y);
//  nam.resizeBy(-w,-h);
  nam.moveTo(sx,sy);
// nam.document.writeln('x = ',x,', y = ',y,', h = ',h,', w = ',w,', sx = ',sx,', sy = ',sy); 
// nam.document.writeln('nam.width = ',nam.width,', nam.height = ',nam.height); 
}

// end hiding -->