//***エフ・アイ・ティー・パシフィック株式会社外部JavaScript***


//CSS振り分けスクリプト
var browser;
browser=0;

if (!browser) {
if (navigator.platform.indexOf('Mac') > -1) {
//mac
if (navigator.appName.indexOf('Microsoft') > -1) {
//mac:explorer
x="iemac"
document.write("<style type='text/css'><!--")
document.write("td{ font-size: 12px; line-height: 140%}")
document.write(".text10{ font-size: 10px; line-height: 150%}")
document.write(".text14 { font-size: 14px; line-height: 120%}")
document.write("--></style>")
}
else {
//mac:netscape
x="nsmac"
document.write("<style type='text/css'><!--")
document.write("td { font-size: 12px; font-family:Osaka}")
document.write(".text10 { font-size: 10px; font-family:Osaka}")
document.write(".text14 { font-size: 14px; font-family:Osaka}")
document.write(".text18 { font-size: 18px; font-family:Osaka}")
document.write("--></style>")

}
} else {
//win
if (navigator.appName.indexOf('Microsoft') > -1) {
//windows or unix:explorer
x="iewin"
document.write("<style type='text/css'><!--")
document.write("td {font-size: 12px;line-height: 140%}")
document.write(".text10 {font-size: 11px;line-height: 140%}")
document.write(".text14 {font-size: 14px;line-height: 120%}")
document.write(".text18 {font-size: 18px;line-height: 120%}")
document.write("--></style>")

} else {
//windows or unix:netscape
x="nswin"
document.write("<style type='text/css'><!--")
document.write("td {font-size: 12px;font-family:MS Gothic}")
document.write(".text10 {font-size: 11px;font-family:Arial}")
document.write(".text14 {font-size: 15px;font-family:MS Gothic}")
document.write(".text18 {font-size: 18px;font-family:MS Gothic}")
document.write("--></style>")

}
}
}


function navi(obj) {
 url = obj.options[obj.selectedIndex].value;
 if(url != "") {
   location.href = url;
  }
}

//ホップアップウィンドウ
<!--
function OpenWindow(theURL,winName,features) 
{ window.open(theURL,winName,features); }
//-->