// JavaScript Document
<!-- 
		function printOption () {
			switchStyle();
		}
		
		function actionOnLoad () {
			switchStyle();
		}
	
		window.onresize =	printOption;
		window.onload =		actionOnLoad;
		
//-->
<!--
function switchStyle(){
			var capture_string=location.href.substring(location.href.lastIndexOf("?") + 1);
			if (capture_string == 'print'){
				var para = document.getElementById("pr");
			para.setAttribute("href","/css/style_print.css");
			}
				
			var i, a, main;
			
            if (capture_string != 'print'){
				for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
					if(a.getAttribute("rel").indexOf("style") != -1
					&& a.getAttribute("title")) {
						a.disabled = true;
						if(a.getAttribute("title") == "sc") a.disabled = false;
					}
				}
				
			}
			
            else if (capture_string == 'print'){
				for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
					if(a.getAttribute("rel").indexOf("style") != -1
					&& a.getAttribute("title")) {
						a.disabled = true;
						if(a.getAttribute("title") == "pr") a.disabled = false;
					}
				}
			}
		}
		//-->