// JavaScript Document
function popUpWindow(URLStr, left, top, width, height) {
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function openPopUp(url, width, height) {
  popUpWin = open(url, 'popUpWin', 'toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbar=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+'');
}