function OpenPopup(url, name, width, height) { 
  var attrib = 'status=1,resizable=1,toolbar=0,left=0,top=10,scrollbars,width=' + width + ',height=' + height; 
  var thePopup = window.open(url, name, attrib); 
  thePopup.focus(); 
}
