/* URL to ther teams */
preURL = null;
schedulePageURL = "/servlet/ContentServer?pagename=Sirius/Page&c=";

function setURLValues(c,cid,l,m,y){
	preURL = schedulePageURL + c +"&cid=" + cid + "&league=" + l + "&month=" + m +"&year=" + y ;
	return;
}
//This function generates the url for the teams on the Monthly Schedule View - ScheduleMLATV.jsp
// The name is kept short to conserver page weight
function lT(a,t) {
	teamURL = preURL + "&activity=" + a + "&team=" + t;
	window.location.href=teamURL;
	return;
}

//This function generates the url for the streams on the Monthly Schedule View - ScheduleMLATV.jsp
// The name is kept short to conserver page weight
function lS(a,s){
	streamURL = preURL + "&activity=" + a +"&stream=" +s;
	window.location.href=streamURL ;
	return;
}


