<!--
//font_m  = "/jp/common/css/fontsize_medium.css";
//font_s  = "/jp/common/css/fontsize_small.css";
//font_l  = "/jp/common/css/fontsize_large.css";
print_p = "/common/css/print.css" // 追記

// ::::::::::::::: for Print

str = location.search;
str = str.substring(1,str.length);

// ::::::::::::::: クエリー追加用
if(str.length > 5){
strNum = str.length;
str = str.substring(strNum-5,str.length);
}

fname = location.href;

if (str == "print"  ) {

	document.write('<link href="'+print_p+'" rel="stylesheet" type="text/css">');
	//document.write('<link href="../'+print_p+'" rel="stylesheet" type="text/css">');
	//document.write('<link href="../../'+print_p+'" rel="stylesheet" type="text/css">');
	//document.write('<link href="'+font_m+'" rel="stylesheet" type="text/css">');
	//var cookie = readCookie("PawerAcademy");


	//if(cookie == "large"){
	//	document.write('<link href="'+font_l+'" rel="stylesheet" type="text/css">');
	//}else if(cookie == "small"){
	//	document.write('<link href="'+font_s+'" rel="stylesheet" type="text/css">');
	//}
} else {
	if(window.name == "printWindow"){
		document.write('<link href="'+print_p+'" rel="stylesheet" type="text/css">');
	}
}

function setURL(){
	str = location.search;
	str = str.concat("&print");
	window.open(str,"newWin");
}

function opnePopup(url){
	var newWin=window.open(url,'popup','width=630,height=630,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes,scrollbars=yes');
	newWin.focus();
}

//-->

