	// google language translation
var currLang = "en";
function langGoogleCheck(val){
	var a = val;
	var b = currLang;
	var c = b + "|" + a;
	var el = document.getElementById("langpair");
	el.value = c;
	var elsite = document.getElementById("langsite");
	var locate = window.location.href;
	var temp = locate.split("u=");
	if(temp.length>1){
		elsite.value = temp[1];	
	} else {
		elsite.value = locate;
	}
	document.frmTrURLG.submit();
}		
if (window.top != window.self) {
	window.top.location.href = window.self.location.href; 
}
/*
	//babelfish language translation
	var currLang = "en";
	function langBabelCheck(val){
		if(currLang != val){
			var a = val;
			var b = currLang;
			var c = b + "_" + a;
			var el = document.getElementById("lang");
			el.value = c;
			var elsite = document.getElementById("langsite");
			elsite.value = window.location;
			document.frmTrURLB.submit();
		}		
	}
*/