var newwin;
function winopen(url, w, h) {
  if (newwin) {
    if (!newwin.closed) {
      newwin.location.href=url;
      newwin.focus();
    } else {
      newwin=window.open(url,'subWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=Yes,resizable=YES,width='+w+',height='+h);
    }
  } else {
    newwin=window.open(url,'subWindow','toolbar=no,location=no,status=no,menubar=no,scrollbars=Yes,resizable=YES,width='+w+',height='+h);
  }
}
