<!-- 
{ 
 
/* Allocate memory */
strLangPage     = new String (location.href);
 
/* Catch pages translated externally and re-assign */
if ((strLangPage.indexOf("/translate_c?")!=-1))
  {
  /* Catch pages with the new google tracking code and strip */
  if ((strLangPage.indexOf("&usg=")!=-1))
    {
    strLangPage = strLangPage.slice((strLangPage.lastIndexOf("u=") + 2),(strLangPage.lastIndexOf("&usg=")  ));
    }
  else
    {
    strLangPage = strLangPage.slice((strLangPage.lastIndexOf("u=") + 2));
    }
  }
 
document.write("<div style='margin:0px; padding:0px;'>");
document.write("<a style='padding:0px' title='English' href='",strLangPage,"' ><img alt='English' style='border:0px; padding:0px 0px 0px 0px;' src='images/en.png' /> </a> "); 
document.write("<a style='padding:0px' title='Chinese (Simplified)' href='http://72.14.235.104/translate_c?hl=en&langpair=en%7Czh-CN&u=",
strLangPage,
"'> &nbsp; <img alt='Chinese' style='border:0px; padding:0px 0px 0px 0px;' src='images/zh-TW.png' /></a>");
document.write("<a style='padding:0px' title='French' href='http://72.14.235.104/translate_c?hl=en&langpair=en%7Cfr&u=",strLangPage,"' > &nbsp; <img alt='French' style='border:0px; padding:0px 0px 0px 0px;' src='images/fr.png'  /></a>");
document.write("<a style='padding:0px' title='German' href='http://72.14.235.104/translate_c?hl=en&langpair=en%7Cde&u=",strLangPage,"' > &nbsp; <img alt='German' style='border:0px; padding:0px 0px 0px 0px;' src='images/de.png' /></a>");
document.write("<a style='padding:0px' title='Hindi' href='http://72.14.235.104/translate_c?hl=en&langpair=en%7Chi&u=",strLangPage,"' > &nbsp; <img alt='Hindi' style='border:0px; padding:0px 0px 0px 0px;' src='images/hi.png'/></a>");
document.write("</div>");

} 
// --> 
