function nw(url,window_name,width,height,status,toolbar,menubar) {
  myWindow=window.open(url, window_name, 'width='+width+',height='+height+',status='+status+',toolbar='+toolbar+',menubar='+menubar+',scrollbars=yes,resizable=yes');
  myWindow.focus();
  return;
}
