//Written June 15 2010 by AG @4ward

function drawLogo(the_location) {
	if (isFrench(the_location)) {
		document.write('<img src="/images/top_logo_fr.gif" width="238" height="71" border="0" />');
	} else {
		document.write('<img src="/images/top_logo_en.gif" width="238" height="71" border="0" />');
	}
}

function isFrench(the_location) {
	var rv = false;
	var pathArray = the_location.split( '/' );
	
	if(pathArray[1].toLowerCase() == "francais") {
		rv = true;
	}
	return rv;
}