
  // Load the Google Transliteration API
  google.load("elements", "1", {packages: "transliteration"});

  function onLoad() {
    var options = {
        sourceLanguage:
            google.elements.transliteration.LanguageCode.ENGLISH,
        destinationLanguage:
            [google.elements.transliteration.LanguageCode.PERSIAN],
        shortcutKey: 'ctrl+g',
    transliterationEnabled: true
};

// Create an instance on TransliterationControl with the required
// options.
var control =
    new google.elements.transliteration.TransliterationControl(options);

// Enable transliteration in the textbox with id
// 'transliterateTextarea'.
	var ids = [ "transliterateTextarea", "transliterateTextarea2" ];
	control.makeTransliteratable(ids);        
  }
  google.setOnLoadCallback(onLoad);