var Globle = 'http://www.MICMiami.com/scripts/modules/';
function changeLang(language,currentPage)
{
/*	//Clear our fetching variable
var xmlhttp=false; 
//Try to create active x object
try {
    xmlhttp = new ActiveXObject('Msxml2.XMLHTTP'); 
    } catch (e) {
    try {
         xmlhttp = new ActiveXObject('Microsoft.XMLHTTP'); 
    } catch (E) {
         xmlhttp = false;
    }
 }
 if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
     xmlhttp = new XMLHttpRequest();
 }

var page = Globle+'changeLang.cfm';
var params = '?L='+language;



var file = page+params;



//Open the file through GET, and add the page we want to retrieve as a GET variable
xmlhttp.open('GET',file, true);     

xmlhttp.onreadystatechange=function() {
if(xmlhttp.readyState == 1){
 
	//set Proccessing to True 
	loadDash('Changing language to &raquo; '+language)


   //Check if it is ready to recieve data 
   }else if(xmlhttp.readyState==4) { 
   //Make sure there is something in the content variable
   var content = xmlhttp.responseText; 

      //The content data which has been retrieved
      if( content )
	  { 

	  	//HideDash
		hideDash()	;
		//Reload
		self.location='index.cfm';
		

      }
   }
}
//Nullify the XMLHttpRequest
xmlhttp.send(null);*/

var page = "http://www.MICMiami.com/scripts/modules/changeLang.cfm";
var params = '?L='+language+'&currentPage='+currentPage;
var file = page+params;

self.location=file;


}