google.load("elements", "1", {packages: "transliteration"}); function OnLoad() { var options = { sourceLanguage: google.elements.transliteration.LanguageCode.ENGLISH, destinationLanguage: [google.elements.transliteration.LanguageCode.TAMIL], shortcutKey: 'ctrl+g', transliterationEnabled: true }; var control = new google.elements.transliteration.TransliterationControl(options); var content = document.getElementById('tamilText'); content.innerHTML = '<small><div id="ta3reebControl">Click on the button below or Ctrl+g to toggle between Tamil & English - </div></small><input type=text id="tamilName"><div><small>Type the name and hit space to get it in Tamil. Click on the name to see more options.</small></div>'; control.showControl('ta3reebControl'); control.makeTransliteratable(['tamilName']); } google.setOnLoadCallback(OnLoad); 

