
function showhideH(){

    if(document.getElementById("area").style.display == "none"){
      document.getElementById("area").style.display = "block";
    }else{
      document.getElementById("area").style.display = "none";
	}
}


function setStartPage() {
        if (navigator.userAgent.indexOf("Opera",0) < 0 && navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.userAgent.indexOf("Windows 95")>=0 || navigator.userAgent.indexOf("Windows 98")>=0 || navigator.userAgent.indexOf("Windows NT")>=0)) {
                document.write('<a href="/index.html" onClick="this.style.behavior=\'url(#default#homepage)\'; this.setHomePage(\'http://www.e-maple.net/\');">スタートページに設定</a></li>');
}
}