

//プラットフォームによるCSSの分岐。

var apOS = navigator.userAgent ;

if ( apOS.indexOf("Win") >= 0 )
{
    userOS = "Win" ;
}
if ( apOS.indexOf("Mac") >= 0 ) 
{
    userOS = "Mac" ;
}

if ( userOS == "Win" )
{
    document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="../../css/win2.css">') ;
    document.close( ) ;
}
else if ( userOS == "Mac" )
{
    document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="../../css/mac2.css">') ;
    document.close( ) ;
}

//ネスケリサイズバグ

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);


