/* FUNCTIONS FOR SCREEN - Sport */

function fn_viewsport(sportid,section) {
	url = 'sport.cfm?sportid=' + sportid;
	if (section != '') {
		url = url + '#' + section;
	} else {
		url = url + '&sview=' + fn_ActiveSection('sView');
	}
	document.location.href = url;
}

