	function translatePage(languagePair){
		//This function was modified from a javascript link on the translate.google.com page.
		//var t = ((window.getSelection&&window.getSelection()) ||(document.getSelection&&document.getSelection()) ||(document.selection && document.selection.createRange && document.selection.createRange().text));
		var e = ( document.charset || document.characterSet );
		
		currentURL = "http://www.hockaday.org/podium/default.aspx?rc=1";
		//currentURL = location.href;
		
		//if (t != '') {
		//	location.href='http://translate.google.com/translate_t?text='+t+'&hl=en&langpair=' + languagePair + '&tbb=1&ie='+e;
		//}else{
			location.href='http://translate.google.com/translate?u='+escape(currentURL)+'&hl=en&langpair=' + escape(languagePair) + '&tbb=1&ie='+e;
		//};
	}
	
	
