// window size and position - default browser

// window size and position - default browser
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+'');
}

function popNL(winName,wide,hi,X,Y,bar) {
    window.open('', winName, '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='+X+'')
}

