if (document.images) {
	
	rssIcon = new Image();
	rssIcon.src = "/img/common/rss_over.png";
	
	frenchImage = new Image();
	frenchImage.src = "/img/common/lang.french_over.gif";
	
	englishImage = new Image();
	englishImage.src = "/img/common/lang.english_over.gif";
}

function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}

// ============== Popup ==============
function openPopup(type,url) {
	if (!window.open) alert('Merci de bien vouloir autoriser les fenêtres popup pour ce site');
	else {
		if (type == 1) { // 1 = Popup
			var largeur = 480;
			var hauteur = 440;
			var top=(screen.height-hauteur)/2;
			var left=(screen.width-largeur)/2;
			window.open(url,'Popup','toolbar=0,location=0,directories=0,status=1,scrollbars=0,resizable=1,copyhistory=0,menuBar=0,width='+largeur+',height='+hauteur+',left='+left+',top='+top+'');
		}
		else { void(0);	}
	}
}

// ============== Pages ==============
function getpage(idm,subm) {
	//alert(idm+","+subm);
	var newurl = arrayPages[idm][subm];
	//alert(newurl);
	document.location= newurl+".php";
}
