/**
 * correct some common case issues
 */
function alterLoginDetails(theForm) {
	//theForm.username.value = theForm.username.value.toUpperCase();
	var ebps = Array("AIM", "ARR", "BCQ", "BREEZ", "CON", "DRE", "INT", "ISE", "MCC", "MC", "MCS", "MTM", "MIP", "PIN", "QCF", "QMI", "QRAA", "SAV", "SCL", "SEQW", "SNP", "SPT", "SUNM", "SUNW", "TUNS", "UQS", "30", "PAF", "WB", "SWI");
	for (var x = 0; x < ebps.length; x++) {
		var regex = new RegExp(""+ebps[x]+"([0-9]+)","i");
		theForm.username.value = theForm.username.value.replace(regex, ebps[x]+"$1");
	}
	return true;
}
