<!--

/*======================================================
 Win  n4 n6 moz e4 e5 e6,
 Mac  n4 n6 moz e4.5 e5,
 Linux n4 n6 moz         
=======================================================*/

 function getBrowserLANG(){

  if(document.all)                  
    return navigator.browserLanguage      //IE用
  else if(document.layers) 
    return navigator.language             //N4用
  else if(document.getElementById) 
    return navigator.language.substr(0,2) //N6,Moz用

 }

lng = getBrowserLANG()
  if( lng=='ja' ) 
    document.writeln('<h1>雨引の里と彫刻<br><span> AMABIKI VILLAGE AND SCULPTURE</span></h1><p>このサイトは作家主導で開催される現代野外彫刻展「雨引の里と彫刻」の最新の情報とこれまでの記録を紹介するアートサイトです</p>');
  else
    document.writeln('<h1 class="e">AMABIKI VILLAGE AND SCULPTURE<br><span>Executive committee of Amabiki Village and Sculpture</span></h1><p>This site is an art site which introduces the newest information of field sculpture exhibition named "AMABIKI VILLAGE AND SCULPTURE" held by the artists, and old exhibitions record.</p>');

//-->
