function selectCroisade(obj) {
	var strValue = obj.value;
	if (strValue.indexOf("archives/") != -1) {
		document.location.href = strValue;
	} else {
		var windowprops = "width=510,height=550,location=no,scrollbars=no,menubars=no,toolbars=no,resizable=yes";
		popup = window.open("/nouvelles/croisade/" + strValue,"MenuPopup",windowprops);
	}
}

function sendScore( titre, score, maximum, random) {
	var targetURL = "/nouvelles/croisade/croisade-resultat.asp";
	var queryString = "?titre=" + titre + "&score=" + score + "&maximum=" + maximum + "&random=" + random;
	window.open(targetURL+queryString,'stats','toolbar=0,width=400,height=460,scrollbars=0,menubar=0');
}
