ConfirmIt Change the language using a switch function
Switch the langauges using the language codes provided in the manual.
//surveyscripting.com
function LangSwitch()
{
switch(CurrentLang())
{
case '9':
return "English";
break;
}
...
}