/* General Swap Image Function */
function swap(img, state) {
	imgPath = "/images/";
	if (document.images) {
		document[img].src = (state.toLowerCase()=="on") ? imgPath+img+"_b.gif" : imgPath+img+"_a.gif" ;
	}
}
