US to encourage 'substantive talks on Tibet'

4

HimVani

Shimla: After US President Barack Obama’s meeting with Tibetan Spiritual leader Dalai Lama in the Map Room of the white house recently, the US state department has submitted its annual report on Tibet negotiations to the Congress, encouraging ‘substantive dialogue’ between Dalai Lama or his representatives and the Chinese government to resolve long-standing issues, official statement of Tibetan Government in exile said.

Tibetan website www.tibet.net said that 2009-10 report outlined the “US Policy on Tibet” mentioned the steps taken by the US President and the Secretary of State to encourage the government of the People’s Republic of China (PRC) to enter into a dialogue with Dalai Lama or his representatives leading to a negotiated agreement on Tibet” and “Status of discussions between the PRC and the Dalai Lama’s representatives.

“The US government believes that the Dalai Lama can be a constructive partner for China as it deals with the difficult challenge of continuing tensions in Tibetan areas. His views are widely reflected within Tibetan society, and he commands the respect of the vast majority of Tibetans. His consistent advocacy on non-violence is an important principle for making progress toward a lasting solution,” the report noted. It also pointed out that China’s engagement with the Dalai Lama or his representatives to resolve problems facing Tibetans is in the interests of both the Chinese government and the Tibetan people. Failure to address these problems will lead to greater tensions inside China and will be an impediment to China’s social and economic development. The US government reiterated its call for China to respect the unique religious, lingustic, and cultural heritage of the Tibetan people, their human rights, and civil liberties.

// 0 &&
result.transliterations[0].transliteratedWords.length > 0) {
var res = result.transliterations[0].transliteratedWords[0];
if(callback){
return callback(ele, res);
}
ele.innerHTML = res;
}
}
});
},
getLang: function(code){
for (l in google.language.Languages) {
if(google.language.Languages[l] == code){
return l;
}
}
},
getLanguageForCode: function(code){
var lang = Transliterate.getLang(code);
if(lang){
lang = Transliterate.getCamelizedStr(lang);
}
return lang;
},

getCamelizedStr: function(str){
str = str.toLowerCase();
str = str.substring(0, 1).toUpperCase()+str.substring(1, str.length);
return str;
},

languageChangeHandler: function(defaultev) {
var dropdown = document.getElementById(‘languageDropDown’);
var selOpt = dropdown.options[dropdown.selectedIndex];
var selectedLang = selOpt.value;
if (!selectedLang.match(“Turn”)) {
Transliterate.transliterationControl.setLanguagePair(google.elements.transliteration.LanguageCode.ENGLISH, selectedLang);
Transliterate._controlDiv.title = ‘Type in ‘+selOpt.title + ‘. Click on the checkbox to turn on/off the language setting.’;
if(!defaultev){
Transliterate.setCookie(‘Transliterate_LANG’, selectedLang);
}
Transliterate.currentLanguage = selectedLang;
}
},

afterChange: function() {
var dropdown = document.getElementById(‘languageDropDown’);
var selOpt = dropdown.options[dropdown.selectedIndex];
var selectedLang = selOpt.value;
if (selectedLang.match(“Turn”)) {
for (var i = 0; i < dropdown.options.length; i++) {
if (dropdown.options[i].value == Transliterate.currentLanguage) {
dropdown.selectedIndex = i;
var lang = dropdown.options[i].text;
}
}

if (document.getElementById("checkboxId").checked) {
document.getElementById("checkboxId").checked = false;
document.getElementById("languageDropDown").style.background = "#CDCDCD";
document.getElementById("languageDropDown").style.color = "#8A8384";
document.getElementById("languageDropDown").parentNode.style.background = "#CDCDCD";
document.getElementById("languageDropDown").style.fontWeight = "normal";
dropdown.options[0].text = "Turn " + lang + " ON";
dropdown.options[0].title = "Turn " + lang + " ON";
dropdown.options[0].value = "Turn " + lang + " ON";
} else {
document.getElementById("checkboxId").checked = true;
document.getElementById("languageDropDown").style.background = "#92C166";
document.getElementById("languageDropDown").style.color = "#000000";
document.getElementById("languageDropDown").parentNode.style.background = "#92C166";
document.getElementById("languageDropDown").style.fontWeight = "bold";
dropdown.options[0].text = "Turn " + lang + " OFF";
dropdown.options[0].title = "Turn " + lang + " OFF";
dropdown.options[0].value = "Turn " + lang + " OFF";
}
Transliterate.transliterationControl.toggleTransliteration();
Transliterate.setCookie('Transliterate_ENABLED', Transliterate.transliterationControl.isTransliterationEnabled());

} else {
if (!document.getElementById("checkboxId").checked) {
document.getElementById("checkboxId").click();
} else {
if (!this.is_local) {
var currLang = dropdown.options[dropdown.selectedIndex].text;
if (document.getElementById("checkboxId").checked) {
dropdown.options[0].text = "Turn " + currLang + " OFF";
dropdown.options[0].title = "Turn " + currLang + " OFF";
dropdown.options[0].value = "Turn " + currLang + " OFF";
} else {
dropdown.options[0].text = "Turn " + currLang + " ON";
dropdown.options[0].title = "Turn " + currLang + " ON";
dropdown.options[0].value = "Turn " + currLang + " ON";
}
}
}
}
},

toggleLanguage: function(event) {
var dropdown = document.getElementById('languageDropDown');
if (event.target.innerHTML == dropdown.options[dropdown.selectedIndex].text) {
if (!document.getElementById("checkboxId").checked) {
document.getElementById("checkboxId").click();
}
}
},

_controlDiv: undefined,
createComponents: function(){
// HRef
var controlHTML = "

“+

“+
“+
““+
“”+
“+

“+

“+

“;
var dDiv = document.createElement(‘div’);
dDiv.innerHTML = controlHTML;
Transliterate._controlDiv = dDiv.firstChild;
//document.importNode(Transliterate._controlDiv, true);
document.body.appendChild(Transliterate._controlDiv);
Transliterate._controlDiv.dimension = {‘width’: Transliterate._controlDiv.offsetWidth, ‘height’: Transliterate._controlDiv.offsetHeight};

if (this.is_local) {
Transliterate._controlDiv.style.display = ‘block’;
} else {
Transliterate._controlDiv.style.display = ‘none’;
}
},
parentWin: undefined,
performAction: function(){
google.load(‘language’, “1”);
google.load(“elements”, “1”, {
packages: [“transliteration”],
});
google.setOnLoadCallback(Transliterate.init);
},
setCookie: function(cookieName, cookieValue, nDays) {
var today = new Date();
var expire = new Date();
if (nDays==null || nDays==0) nDays=30;
expire.setTime(today.getTime() + 3600000*24*nDays);
document.cookie = cookieName+”=”+escape(cookieValue)
+ “;expires=”+expire.toGMTString();
},

getCookie: function(name) {
var theCookies = document.cookie.split(/[; ]+/);
for (var i = 0 ; i < theCookies.length; i++) {
var aName = theCookies[i].substring(0,theCookies[i].indexOf('='));
if (aName == name) {
var c = theCookies[i];
var index = c.lastIndexOf('=');
c = c.substring(index+1, c.length);
return c;
}
}
},

eventAdded: false,
onLoad: function(loadCallback){
if(Transliterate.loaded){
return loadCallback();
}
document.write = function(scr){
var d = document.createElement('div');
d.innerHTML = scr;
document.body.appendChild(d.firstChild);
};
var callBack = function(){
Transliterate.addStyles();
Transliterate.createComponents();
Transliterate.performAction();
loadCallback();
};
Transliterate.addScript('http://www.google.com/jsapi', callBack);
Transliterate.loaded = true;
},
addEvents: function(){
if(Transliterate.eventAdded){
return;
}
Transliterate.eventAdded = true;
document.addEventListener('mousedown', Transliterate.handleEvent, true);
document.addEventListener('focus', Transliterate.handleEvent, true);
/*document.addEventListener('blur', function(ev){
var tar = ev.target;
tar.removeEventListener('click', Transliterate.handleEvent, false);
tar.removeEventListener('focus', Transliterate.handleEvent, false);
}, false);*/
},
autoIdCntr: 1,
isEditableElement: function(el){
var tag = el.tagName;
if(!tag || el.disabled == true || el.readOnly == true){
return false;
}
if(tag.toLowerCase() == 'textarea'){
return true;
}
if(Transliterate.supportTextBoxes && tag.toLowerCase() == 'input' && el.type.toLowerCase() == 'text'){
return true;
}
if(tag.toLowerCase() == 'div' && el.contentEditable.toLowerCase() == 'true'){
return true;
}
if(tag.toLowerCase() == 'iframe'){
var iframedoc = el.contentWindow.document;
if(iframedoc.designMode.toLowerCase() == "on" || iframedoc.body.contentEditable.toLowerCase() == "true") {
return true;
}
}
},
handleEvent: function(event){
try{
// HRef
if (this.is_local) {
var el = document.getElementById('myTextarea');
} else {
var el = event.target;
}
if(Transliterate.isEditableElement(el)){
var lazyLoader = function(){
Transliterate.lazyLoadObjects(el);
};
var initer = function(){
Transliterate.checkAndWaitTillInit(lazyLoader);
};
Transliterate.onLoad(initer);
return;
}
if(!Transliterate.isCntrlsDiv(el)){
Transliterate.showControl(el, true);
}
}catch(e){
}
},
waitCounter: 0,
checkAndWaitTillInit: function(callback){
try{
Transliterate.init();
}catch(e){
if(Transliterate.waitCounter == 15){
return;
}
Transliterate.waitCounter++;
var f = function(){
Transliterate.checkAndWaitTillInit(callback);
};
setTimeout(f, 200);
return;
}
callback();
},
isInTheList: function(el){
for(var i=0; i

Previous articleTwo die, including a Himachali youth, carrying apple to Delhi
Next articleProgressive farmers from the state to visit Israel

No posts to display

4 COMMENTS

  1. Pushing forward a ‘substantive dialogue’ between the Tibet parties is a very encouraging sign. The US government has taken a stand for human rights, and civil liberties.

  2. Pushing forward a ‘substantive dialogue’ between the Tibet parties is a very encouraging sign. The US government has taken a stand for human rights, and civil liberties.

  3. ok – before you guys start hating me, read through. 
    i do not agree with what china did with tibet. taking over a small, powerless nation like tibet by a giant of chinese proportions – NOT COOL. years of brainwashing and methodical tampering of culture to point where young tibetans in tibet today even sound like chinese when speaking their own language – DOWNRIGHT WRONG. half a century of tibet refugees living in india, down to the third generation in most cases now but still not calling themselves indians, after being born and brought up in indian soil – PRICELESS.
    i would love to see tibetans take on indian citizenships – say no the refugee status and assimilate with the general population a bit more. i have no problems with them chasing the 'free tibet'  cause. hell, i'd even support them! but they need to muffle this illogical but passionate idea with some feel-good signals towards the people that took them in and gave them a home (and a government in exile).
    now you can hate me.

  4. ok – before you guys start hating me, read through. 
    i do not agree with what china did with tibet. taking over a small, powerless nation like tibet by a giant of chinese proportions – NOT COOL. years of brainwashing and methodical tampering of culture to point where young tibetans in tibet today even sound like chinese when speaking their own language – DOWNRIGHT WRONG. half a century of tibet refugees living in india, down to the third generation in most cases now but still not calling themselves indians, after being born and brought up in indian soil – PRICELESS.
    i would love to see tibetans take on indian citizenships – say no the refugee status and assimilate with the general population a bit more. i have no problems with them chasing the 'free tibet'  cause. hell, i'd even support them! but they need to muffle this illogical but passionate idea with some feel-good signals towards the people that took them in and gave them a home (and a government in exile).
    now you can hate me.

Comments are closed.