// Javascripts that go with the CCF webpage


function makeActive(thebutton) {
	
	oldname = thebutton.src;
	newname = oldname.substring(0, oldname.length-4) + "_active.gif";
	thebutton.src = newname;
	
}

function makeInactive(thebutton) {
	
	oldname = thebutton.src;
	newname = oldname.substring(0, oldname.length-11) + ".gif";
	thebutton.src = newname;
}

function showImage(img) {
	cur = document.getElementById("curpic");
	cur.src = "images/" + img;	
}
