var popUpWin=0;
function popUpWindow(URLStr, right, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',right='+right+', top='+top+',screenX='+right+',screenY='+top+'');
}

var reviewWin=0;
function reviewWindow(URLStr, right, top, width, height)
{
  if(reviewWin)
  {
    if(!reviewWin.closed) reviewWin.close();
  }
  reviewWin = open(URLStr, 'reviewWin', 'toolbar=no,location=no,directories=no,status=no,menubar=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',right='+right+', top='+top+',screenX='+right+',screenY='+top+'');
}

// break frames
if (window != top) top.location.href = location.href;
// End