// JavaScript Document
//-------------------------------------------------------------------------------
//------Document PDF--------------------------------------------------
//---------------------------------------------------------------------------------

var popUpWin=0;
function popUpWindow(URLStr)
{
	left=200;
	width=700;
	height=600;
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  } 
  popUpWin =open(URLStr, 'popUpWin','toolbar=yes,location=no,directories=yes,status=no,menub ar=yes,scrollbar=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top+'');
    
}


