<!--
function errorsuppressor(){
return true;
}
window.onerror=errorsuppressor;
function loadmacFrame(strLoc)
{
 location.href = strLoc;
}

function loadwinFrame(strLoc)
{
 location.replace(strLoc);
}

if (top == self) // (c) TRQ
{ 
 var strPage, cnt1, cnt2, strLoc, size, strLang;

 strLang = "index.html";

 strPage = parent.location.pathname + location.search;
 size = strPage.length;
 strPage = strPage.toUpperCase();
 while (strPage.slice(0,1) == " ")
  {strPage = strPage.substr(1,size-1); size = strPage.length;
  }
 while(strPage.slice(size-1,size)== " ") 
  {strPage = strPage.substr(0,size-1); size = strPage.length;
  }

 cnt1 = strPage.indexOf("-");
 if (cnt1>0) 
 { 
 cnt1++;
 cnt3 = strPage.indexOf(".");
 if (cnt3==0) { cnt3=strPage.length; }
 strPage = strPage.substring(cnt1,cnt3);

 cnt1 = strPage.indexOf("-");
  if (cnt1>0) 
  { 
     strPage = strPage.substring(1,cnt1);
  }
 }
  strPage = strPage.toLowerCase();

  var agt = navigator.userAgent.toLowerCase();
  var is_iemac = (agt.indexOf('msie')!=-1) && (agt.indexOf('mac')!=-1) && (is_major<4);
  
  if (strPage.length>0) 
  {
   if (agt.indexOf("mac") != -1) 
    {  
     strLoc = strLang; 
     var o = 'loadmacFrame('+"\'"+strLoc+"\'"+')';
     if (is_iemac) {window.setTimeout(o,1500);} else {window.setTimeout(o,50);} 
    }
    else
    {
     strLoc = strLang; 
     var o = 'loadwinFrame('+"\'"+strLoc+"\'"+')';
     window.setTimeout(o,50);
    }
  }
  else 
  {
   if (agt.indexOf("mac") != -1) 
    {    
     var o = 'loadmacFrame('+"\'"+strLang+"\'"+')'; 
     if (is_iemac) {window.setTimeout(o,1500);} else {window.setTimeout(o,50);} 
    }
    else
    {
     var o = 'loadwinFrame('+"\'"+strLang+"\'"+')';
     window.setTimeout(o,50);
    }
  }
}
//-->