﻿function checkLang(MyEnglishText, MyFrenchText){
	
			if (window.location.href.indexOf("language=e")>0){
					document.write(MyEnglishText)
     	}
     	else {			
				  document.write(MyFrenchText)
    	}
}


