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

function seeMovie(URLStr) {
	var width=192;
	var height=144+46;
	var left=Math.round((screen.availWidth-width)/2);
	var top=Math.round((screen.availHeight-height)/2);
	popUpWindow('/popup/movie.html?mpg='+URLStr+'&width='+width+'&height='+height,left,top,width,height);
}
