// load page to window with defined size, position, scroll option
function popUp(url,win,wide,hi,X,Y,bar) {
window.open(url, win, 'toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,scrollbars='+bar+',width='+wide+',height='+hi+',screenX='+X+',left='+X+',screenY='+Y+',top='+Y+'');
}

// open window with defined size, position, scroll option, to handle dynamic output
function pop(winName,wide,hi,X,Y,bar) {
    window.open('', winName, 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+bar+',width='+wide+',height='+hi+',screenX='+X+',left='+X+',screenY='+Y+',top='+X+'')
}