function isConfig(drc,grps,ils,wcl,wcn){

 var configMsg = "The following have been configured:\n";
 var notconfigMsg = "The following have NOT been configured:\n";
 var configList = "";
 var notconfigList = "";

 if (wcl == true) {
   configList = configList + "-WCL Configuration\n";
 } else {
   notconfigList = notconfigList + "-WCL Configuration\n";
 }
 if (drc == true) {
   configList = configList + "-DR Configuration\n";
 } else {
   notconfigList = notconfigList + "-DR Configuration\n";
 }  

 if (ils == true) {
   configList = configList + "-ILS Support\n";
 } else {
   notconfigList = notconfigList + "-ILS Support\n";
 }

 if (grps == true) {
   configList = configList + "-Groups\n";
 } else {
   notconfigList = notconfigList + "-Groups\n";
 }

 if (wcn == true) {
   configList = configList + "-WCN Authentication\n";
 } else {
   notconfigList = notconfigList + "-WCN Authentication\n";
 }
 
 alert(configMsg + configList + '\n' + notconfigMsg + notconfigList);
}
