// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
/**
 * Ceates a stripped-down popup window for images, documents
 */
function popupDocument (href, width, height) {

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

  return false;
}

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
/**
 * Ceates a stripped-down popup window for images, documents
 */
function popupDocumentWithScrollbar (href, width, height) {

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

  return false;
}