function koushin(){
				
				var xmlHttp;
				  if (window.XMLHttpRequest){
    					xmlHttp = new XMLHttpRequest();
  				}else{
    				if (window.ActiveXObject){
      					xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    				}else{
      					xmlHttp = null;
    					}
  					}
  				xmlHttp.onreadystatechange = checkStatus;
   				xmlHttp.open("GET", "http://www.providence.jp/news/whatsnew.html", true);
			    xmlHttp.send(null);

				function checkStatus(){
  				if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
  				   {
    				var node = document.getElementById("koushin");
     				node.innerHTML = decodeURIComponent(xmlHttp.responseText);
    				}
  					
				}
			}
