// -------------------------------------------------------------------------
// SCREEN SHOT POPUP WINDOW
// -------------------------------------------------------------------------
// this variable names the current window
// (for using the popUp as a remote)
window.name = "currentWindowName";

// this function opens the pop-up window
var newWin;

function popUp(page, details) {
    newWin=window.open(page, '', details);
    newWin.focus();
    return false;
}
