// JavaScript Document
/*var theScrollingDiv;
var scrollspeed = 0;

function initScrollCheck(){
	theScrollingDiv = MM_findObj("txtMoving");
	alert(theScrollingDiv.style.position);
	setInterval("doScroll()",10);
}

function doScroll(){
	//theScrollingDiv.style.top = theScrollingDiv.style.top  1;
	window.status = theScrollingDiv.style.top;
}*/

function changeLang(to){
	var strURL = window.location.href + "";
	var newURL = "";
	if (to == "en"){
		newURL = strURL.replace("fr", "en");
	}
	if (to == "fr"){
		newURL = strURL.replace("en", "fr");
	}
	window.location.href = newURL;
}


