function setLanguage(langValue){setCookie('lang',langValue,7);}
function getSpeech(file,section,name){var speech='';var request=new Request({method:'post',url:'ajax.php',data:'obtenerSpeech=true&file='+file+'&section='+section+'&name='+name,async:false,onRequest:function(){},onSuccess:function(texto,xmlrespuesta){speech=texto;},onFailure:function(){}}).send();return speech;}