function load(url) {
	document.location.href = url;
	return false;
}

function bookmark() {
	// eVisitAnalyst Aggregate
	bookmarkImage = new Image();
	bookmarkImage.src = "http://select.evisitanalyst.com/cgi-bin/insite/harvest/custom.pl?id=25455&ID_CT295=1";
	if (window.external) {
		if (document.location.href.indexOf('?') > -1) {
			window.external.AddFavorite(document.location.href + '&fav', document.title);
		}
		else {
			window.external.AddFavorite(document.location.href + '?fav', document.title);
		}
	}
}

function monthSelect(monthID, tag) {
	monthHideAll();
	document.getElementById(monthID).style.display = 'block';
	tag.className='selected';
}

function monthHideAll() {
	var anchorTags = document.getElementById('priceGuide').getElementsByTagName('a');
	for (var i=0; i < anchorTags.length; i++) {
		anchorTags[i].className='';
	}
	for (var i=0; i < 14; i++) {
		var thisMonth = document.getElementById('month' + i);
		if (thisMonth) {
			thisMonth.style.display = 'none';
		}
		else {
			break;
		}
	}
}