function popwin(url,winname,width,height) {
  var newwin=window.open(url, winname, "scrollbars=yes,toolbar=no,status=no,location=no,menubar=no,resizable=yes,height="+height+",width="+width+",left=10,top=10")
  newwin.focus();
  return false;
}