function open_popup (url,w,h,s) {
  w = window.open(url, 'the_popup','resizable=no,status=no,scrollbars=yes,height='+h+',width='+w);
  w.focus();
}