/**
 * Popup any location with specified height and width
 */
function popupDocument (href, width, height) {

  var newwindow = window.open (href,'unused','height='+height+',width='+width+',resizable=yes,scrollbars=yes');
  if (window.focus) { 
    newwindow.focus(); 
  }

  return false;
}
