// JavaScript Document
var popUpWin=0;

function popUpWindow(URLStr, left, top, width, height)

{

  if(popUpWin)

  {

    if(!popUpWin.closed) popUpWin.close();

  }
	var windowLeft = (screen.width - width) / 2;
  	var windowTop = (screen.height - height) / 2;
  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='+windowLeft+', top='+windowTop+',screenX='+left+',screenY='+top+'');

}
function access()
{
	
	
}


