
function gotomonth() {
	gotomonth = document.getElementById('changemonth').options[document.getElementById('changemonth').selectedIndex].value;
	currenturl = document.location.href;
	if (currenturl.indexOf('&mo=') > -1 || currenturl.indexOf('?mo=') > -1) {
		newurlbeg = currenturl.substring(0,currenturl.indexOf('mo=')-1);
		newurlend = currenturl.substring(currenturl.indexOf('mo='),currenturl.length);
		if (newurlend.indexOf('&') > 1) {newurlend = newurlend.substring(newurlend.indexOf('&'),newurlend.length);}
		else {newurlend = "";}
		currenturl = newurlbeg+newurlend;
	}
	if (currenturl.lastIndexOf('?') > -1) {newurl = currenturl+'&mo='+gotomonth;}
	else {newurl = currenturl+'?mo='+gotomonth;}
//	alert(newurl);
	document.location.href = newurl;
}

function popphoto(photoid) {
	var sx = (screen.width-700)/2;
	var sy = (screen.height-500)/2;
	window.open('/photo.asp?id='+photoid,'_blank','width=700,height=500,screenX='+sy+',left='+sy+',screenY='+sy+',top='+sy+',scrollbars=1,resizable=1');
}