<!--

		// -- MATOME RISAIZUNOTOKI
		function doOnResize () {
			changeStyle();
		}

		// -- MATOME SAISYORO-DONOTOKI
		function doOnLoad () {
			changeStyle();
		}

		// ****************************************************** //

		// -- BURAUZANOHABAWOSHIRABERU.
		function getBrowserWidth(){
			if (window.innerWidth){
				return window.innerWidth;}	
			else if (document.documentElement && document.documentElement.clientWidth != 0){
				return document.documentElement.clientWidth;	}
			else if (document.body){return document.body.clientWidth;}
				return 0;
		}

		// -- SUTAIRUSI-TOWOHENKOUSURU.
		function changeStyle(){

			var browserWidth = getBrowserWidth();
				
			var i, my;
			
			if (browserWidth <= 995){
				for(i=0; (my = document.getElementsByTagName("link")[i]); i++) {
					if(my.getAttribute("rel").indexOf("style") != -1
					&& my.getAttribute("title")) {
						my.disabled = true;
						if(my.getAttribute("title") == "type2") my.disabled = false;
					}
				}
			}
			
			if (browserWidth > 995){
				for(i=0; (my = document.getElementsByTagName("link")[i]); i++) {
					if(my.getAttribute("rel").indexOf("style") != -1
					&& my.getAttribute("title")) {
						my.disabled = true;
						if(my.getAttribute("title") == "type1") my.disabled = false;
					}
				}
			}
		}

		// -- SEARCH
		function submit_search(){
			alert("to be prepared... sorry....")
			//document.searchform.submit();
		}


		// -- ACTIVE
		window.onresize = doOnResize;
		window.onload =	doOnLoad;
		
		function historyback(){
			history.back();
		}


//-->