
function selectDate(d) {
	if (document.location.href.indexOf("?") == -1){
		url = document.location.href;
	} else {
		url = document.location.href.substr(0, document.location.href.indexOf("?") );
	}
	url = url + '?date=' + d;
	document.location.href = url;
}
