function pageJumpByYear(linkLoc,ismember){

	if (linkLoc) {
		if (ismember=="true"){
			window.location.href = "../seminar/index.php?year=" + linkLoc;
		}else{
			window.location.href = "index.php?year=" + linkLoc;
		}
	}

}

function pageJumpByMonth(linkLoc,ismember){

	if (linkLoc) {
		if (ismember=="true"){
			window.location.href = "../seminar/index.php?" + linkLoc;
		}else{
			window.location.href = "index.php?" + linkLoc;
		}

	}

}
