function POPUP(href, top, left, width, height, style) {
  if (style==1) {
    var win = window.open(href, 'POPUP', "status=no,resizable=no,scrollbars=yes,menubar=no,toolbar=no,location=no,directories=no,copyhistory=no,width="+width+",height="+height+",top="+top+",left="+left);
  } else if (style==2) {
    var win = window.open(href, 'POPUP', "status=no,resizable=no,scrollbars=no,menubar=no,toolbar=no,location=no,directories=no,copyhistory=no,width="+width+",height="+height+",top="+top+",left="+left);
  }
  if (win.window) { win.window.focus(); } else { win.focus(); }
}
