function PopWin(url, name, width, height, options) {
  var winOptions = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,left=0,top=0,dependent=yes";

  if(options != null && options != '')
    winOptions = options;
  var win = window.open(url, name, winOptions+",width="+width+",height="+height);

  if(window.focus)
    win.focus();
}

