// JavaScript Document
function langselect()
{
var lang=document.getElementById('selected').selectedIndex;
var Lvalue = document.getElementById('selected').options[lang].text;

switch(Lvalue)
{
case "Arabic":
 			window.location="http://translate.google.com.au/translate?u=http%3A%2F%2Fwww.treatmenttrips.com&sl=en&tl=ar&hl=en&ie=UTF-8";
 break;    
       case "German":
  			window.location="http://translate.google.com.au/translate?u=http%3A%2F%2Fwww.treatmenttrips.com&sl=en&tl=de&hl=en&ie=UTF-8";
  break;
       case "Italian":
  			window.location="http://translate.google.com.au/translate?u=http%3A%2F%2Fwww.treatmenttrips.com&sl=en&tl=it&hl=en&ie=UTF-8";
  break;
  
       case "Japanese":
  			window.location="http://translate.google.com.au/translate?u=http%3A%2F%2Fwww.treatmenttrips.com&sl=en&tl=ja&hl=en&ie=UTF-8";
  break;
       case "Spanish":
  			window.location="http://translate.google.com.au/translate?u=http%3A%2F%2Fwww.treatmenttrips.com&sl=en&tl=es&hl=en&ie=UTF-8";
  break;
default:
 window.location="http://www.treatmenttrips.com/";
}
}
