//Window definitions for this site
function popupExternalWindow(uniqueID,URL,windowAttributesID){
  var attributes = '';
  switch(windowAttributesID){
    case 'small':
      attributes = 'width=400,height=400,location=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes';
      break;
    case 'glossary':
      attributes = 'width=430,height=500,location=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes';
      break;
    case 'large':
      attributes = 'width=650,height=500,location=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes';
      break;
    case 'performanceChart':
      attributes = 'menubar=0,toolbar=0,location=0,directories=0,status=1,scrollbars=1,resizable=1,dependent=1,width=650,height=800,left=50,top=50';
      break;
    case 'proxy':
      attributes = 'width=625,height=810,location=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes';
      break;
    case 'help':
      attributes: 'menubar=0,toolbar=0,location=0,directories=0,status=0,scrollbars=1,resizable=1,dependent=1,width=500,height=450,left=50,top=50';
      break;
    case 'csv':
      attributes = 'width=650,height=500,location=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes';
      break;
    case 'instructions':
      attributes = 'width=430,height=500,location=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes';
      break;
  }
  window.open(URL,uniqueID,attributes);
}

