// JavaScript Document


var popUpWin=0;
function popUpWindow(url, left, top, width, height, file, index, maximum, section, headerclass)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
	popUpWin = open(url + '&' + file + '&' + index + '&' + maximum + '&' + section + '&' + headerclass, 'popUpWin', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}