function nameWindow(name,url,w,h) {
  h += 100;
  w += 50; 
  var opt_str = "height=" + h + ",width=" + w + ",status=no,toolbar=no,menubar=no,location=no";
  window.open(url,name,opt_str);
}
