
function ShowMore( boxid ) {
   var target = document.getElementById(boxid);
   if( target.style.display != "block" ) {
      target.style.display = "block";
   }
   else {
      target.style.display = "";
   }
}


function chart(ci,cp,n){
	if(n == null){
		n = "";
	}
	if(navigator.appVersion.charAt(0)>=3){
		document.images[ci].src = "http://fx-imagine.cocolog-nifty.com/blog/images" + n + "/" + ci + cp + ".png";
	}
}

function exchart(ci,cp,n){
	if(navigator.appVersion.charAt(0)>=3){
		document.images[ci].src = "http://fx-chart.kensui.com/images/" + cp + "/" + ci + n + ".png";
	}
}

