function jumpToPage(pageId) {
	if (pageId != "-") {
		if (document.getElementById('theFrame')) {
			var browserName=navigator.appName; 
			if (browserName=="Netscape") { 
				document.getElementById('theFrame').src=pageId; 
				document.getElementById('theFrame').focus();
			} else  { 
				document.theFrame.location=pageId;	
				document.theFrame.focus();
			}
		} else {			
			document.location.href= "http://www.fixtures365.com" + pageId;
		}
	}
}

function deepLinkage() {
	var areThereVars = document.URL.indexOf('?');
	if (areThereVars != -1)	{ 		
		// Grab everything after and excluding the ?deepLink=
		theVars = document.URL.substring(areThereVars+10, document.URL.length);
		// alert(theVars);
		jumpToPage(theVars);
	}
}

function maus (mrItem) {
	if (mrItem.className == 'monthSelector') {
		mrItem.className='monthSelector_sel';
	} else {
		mrItem.className='monthSelector';
	}
}
function mausOver (mrItem) {
	mrItem.className='monthSelector_sel';
}

function mausOut (mrItem) {
	mrItem.className='monthSelector';
}
