function olyReport(){
var aryQuery = document.location.search.split('&');
for (i=0; i<aryQuery.length; i++) {
	if ((aryQuery[i].indexOf('rsc=') != -1) || (aryQuery[i].indexOf('dc=') != -1)){
		strOlyCat = aryQuery[i].split('=')[1].substring(0,2);
		switch (strOlyCat){
		case 'AR':
			strOlyCat = 'Archery';
			break;
		case 'BD':
			strOlyCat = 'Badminton';
			break;
		case 'BB':
			strOlyCat = 'Baseball';
			break;
		case 'BK':
			strOlyCat = 'Basketball';
			break;
		case 'BX':
			strOlyCat = 'Boxing';
			break;
		case 'CF':
			strOlyCat = 'Canoe/Kayak: Flatwater';
			break;
		case 'CS':
			strOlyCat = 'Canoe/Kayak: Slalom';
			break;
		case 'CB':
			strOlyCat = 'Cycling: BMX';
			break;
		case 'CM':
			strOlyCat = 'Cycling: Mountain Bike';
			break;			
		case 'CR':
			strOlyCat = 'Cycling: Road';
			break;
		case 'CT':
			strOlyCat = 'Cycling: Track';
			break;
		case 'DV':
			strOlyCat = 'Diving';
			break;
		case 'ED':
			strOlyCat = 'Equestrian: Dressage';
			break;
		case 'EC':
			strOlyCat = 'Equestrian: Eventing';
			break;
		case 'ES':
			strOlyCat = 'Equestrian: Jumping';
			break;
		case 'FE':
			strOlyCat = 'Fencing';
			break;
		case 'HO':
			strOlyCat = 'Field Hockey';
			break;			
		case 'GA':
			strOlyCat = 'Gymnastics: Artistic';
			break;
		case 'GR':
			strOlyCat = 'Gymnastics: Rhythmic';
			break;
		case 'GT':
			strOlyCat = 'Gymnastics: Trampoline';
			break;
		case 'JU':
			strOlyCat = 'Judo';
			break;
		case 'MP':
			strOlyCat = 'Modern Pentathlon';
			break;
		case 'RO':
			strOlyCat = 'Rowing';
			break;
		case 'SA':
			strOlyCat = 'Sailing';
			break;
		case 'SH':
			strOlyCat = 'Shooting';
			break;						
		case 'FB':
			strOlyCat = 'Soccer';
			break;
		case 'SO':
			strOlyCat = 'Softball';
			break;
		case 'SW':
			strOlyCat = 'Swimming';
			break;
		case 'SY':
			strOlyCat = 'Synch. Swimming';
			break;
		case 'TT':
			strOlyCat = 'Table Tennis';
			break;
		case 'TK':
			strOlyCat = 'Taekwondo';
			break;
		case 'HB':
			strOlyCat = 'Team Handball';
			break;
		case 'TE':
			strOlyCat = 'Tennis';
			break;
		case 'AT':
			strOlyCat = 'Track & Field';
			break;
		case 'TR':
			strOlyCat = 'Triathlon';
			break;	
		case 'VO':
			strOlyCat = 'Volleyball';
			break;
		case 'BV':
			strOlyCat = 'Volleyball: Beach';
			break;
		case 'WP':
			strOlyCat = 'Water Polo';
			break;
		case 'WL':
			strOlyCat = 'Weightlifting';
			break;
		case 'WF':
			strOlyCat = 'Wrestling: Freestyle';
			break;
		case 'WG':
			strOlyCat = 'Wrestling: Greco-Roman';
			break;	
		}				
		//alert(strOlyCat);
		uoTrack(strOlyCat);
	} else {
		break;
	}
}
}//olyReport