//***アップガレージ外部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: 75%; line-height: 150%; color:#333333}")
document.write(".text10{ font-size: 10px; line-height: 13px}")
document.write(".text14 { font-size: 14px; line-height: 150%}")
document.write(".text16 { font-size: 16px; line-height: 150%}")
document.write(".text18 { font-size: 18px; line-height: 150%}")
document.write("--></style>")
}
else {
//mac:netscape
x="nsmac"
document.write("<style type='text/css'><!--")
document.write("td { font-size: 75%; line-height: 150%; font-family:Osaka; color:#333333}")
document.write(".text10 { font-size: 10px; line-height: 150%; font-family:Osaka}")
document.write(".text14 { font-size: 14px;line-height: 150%; font-family:Osaka}")
document.write(".text16 { font-size: 16px;line-height: 150%; font-family:Osaka}")
document.write(".text18 { font-size: 18px;line-height: 150%; 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: 75%; line-height: 150%; color:#333333}")
document.write(".text10 {font-size: 11px;line-height: 13px}")
document.write(".text14 {font-size: 14px;line-height: 150%}")
document.write(".text16 {font-size: 16px;line-height: 150%}")
document.write(".text18 {font-size: 18px;line-height: 150%}")
document.write("--></style>")

} else {
//windows or unix:netscape
x="nswin"
document.write("<style type='text/css'><!--")
document.write("td {font-size: 75%; line-height: 150%; font-family:MS Gothic; color:#333333}")
document.write(".text10 {font-size: 11px;line-height: 150%;font-family:Arial}")
document.write(".text14 {font-size: 15px;line-height: 150%;font-family:MS Gothic}")
document.write(".text16 {font-size: 16px;line-height: 150%;font-family:MS Gothic}")
document.write(".text18 {font-size: 18px;line-height: 150%;font-family:MS Gothic}")
document.write("--></style>")

}
}
}

function wYear() { //フッタ・コピーライトの西暦を表示
	document.write(new Date().getFullYear());
}

