var win;
function popUpWindow(URLStr,width,height)
{
win = window.open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width='+width+',height='+height+',left=0, top=0,screenX=0,screenY=0');
  }
