// JavaScript Document

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height, scrollbars) {
  if(popUpWin) {
	if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scrollbars+',resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function newBrowserWindow(URLStr) {
	var styleStr = 'toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbar=yes,resizable=yes,copyhistory=no';
	var msgWindow = window.open(URLStr,"theNewWindow", styleStr);
}
	