<!--
//CSSふりわけスクリプト

var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);
if ( bName == "M" && vNum < 4)
	location.href="/getnewbrowser.html";
if ( bName == "N" && vNum < 4)
	location.href="/getnewbrowser.html";

document.writeln("<STYLE TYPE='text/css'><!--");
if(navigator.appVersion.indexOf("Mac") > -1)
{
	if( bName == "M")
	 {
		// MAC IE
		document.writeln(".e1{font-Size:10px}");
		document.writeln(".e2{font-size:12px}");

		document.writeln(".j1{font-Size:10px; line-height:15px}");
		document.writeln(".j2{font-Size:12px; line-height:17px}");

		document.writeln(".j1n{font-Size:10px}");
		document.writeln(".j2n{font-Size:12px}");
	}
	else
	{
		if( vNum < 5 )
		{
			// MAC NETSCAPE 4.x
			document.writeln(".e1{font-Size:10px}");
			document.writeln(".e2{font-size:12px}");

			document.writeln(".j1{font-Size:10px; line-height:15px}");
			document.writeln(".j2{font-Size:12px; line-height:17px}");

			document.writeln(".j1n{font-Size:10px}");
			document.writeln(".j2n{font-Size:12px}");
	 	}
	 	else
	 	{
			// MAC NETSCAPE 6.x~
			document.writeln(".e1{font-Size:10px}");
			document.writeln(".e2{font-size:12px}");

			document.writeln(".j1{font-Size:10px; line-height:15px}");
			document.writeln(".j2{font-Size:12px; line-height:17px}");

			document.writeln(".j1n{font-Size:10px}");
			document.writeln(".j2n{font-Size:12px}");
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// WIN IE
		document.writeln(".e1{font-Size:11px}");
		document.writeln(".e2{font-size:12px}");

		document.writeln(".j1{font-Size:11px; line-height:17px}");
		document.writeln(".j2{font-Size:12px; line-height:18px}");

		document.writeln(".j1n{font-Size:11px}");
		document.writeln(".j2n{font-Size:12px}");
	}
	else
	{
		if( vNum < 5 )
		{
			// WIN NETSCAPE 4.x
			document.writeln(".e1{font-Size:11px}");
			document.writeln(".e2{font-size:12px}");

			document.writeln(".j1{font-Size:11px; line-height:17px}");
			document.writeln(".j2{font-Size:12px; line-height:18px}");

			document.writeln(".j1n{font-Size:11px}");
			document.writeln(".j2n{font-Size:12px}");
		}
		else
		{
			// WIN NETSCAPE 6.x~
			document.writeln(".e1{font-Size:11px}");
			document.writeln(".e2{font-size:12px}");

			document.writeln(".j1{font-Size:11px; line-height:17px}");
			document.writeln(".j2{font-Size:12px; line-height:18px}");

			document.writeln(".j1n{font-Size:11px}");
			document.writeln(".j2n{font-Size:12px}");
		
		}
	}
}


 document.writeln("--></STYLE>");
 
 // OPENS NEW WINDOW
function OpensWindow(winName,url,X,Y,W,H){
var WinD11=window.open(url,winName,'top='+X+',left='+Y+',screenX='+X+',screenY='+Y+',scrollbars=1,toolbar=0,location=0,status=0,menubar=0,resizeable=1,width='+W+',height='+H+'');
opener=self
WinD11.document.close()
}


function CloseWin() {
this.window.close();
}


function addFavorite(TL){
	var brw_v = navigator.appVersion.charAt(0);
	var brw_n = navigator.appName.charAt(0);
	if((brw_v >= 4)&&(brw_n == "M")){
		window.external.AddFavorite(location.href, TL);
	}else{
		window.alert("Internet Explorer4以上のみの対応です");
	}
}
// -->
