//ロールオーバー
function ImgCng(imgName, imgSrc){
	if (document.images){
		var img = document.images[imgName];
		if (img) img.src = imgSrc;
	}
}

function Show(id){
	if(document.getElementById(id).style.display == "block"){
		document.getElementById(id).style.display = "none";
	}
	else{
		document.getElementById(id).style.display = "block";
	}
}
