// JavaScript Document
function courriel(nom,site)
{
	window.location.href = "mailto:" + nom + "@" + site;
}

function popup(fichier, name,largeur, hauteur, scroller, resizable, menus)
{
 	window.open(fichier,name,"toolbar="+menus+",scrollbars="+scroller+",directories=no,status=no,menubar="+menus+",resizable="+resizable+",left=50,right=0,top=50,width="+largeur+",height="+hauteur);
	screen.focus;
}

function changeCSSclass(obj,style)
{
	obj.className = style;
}

function showhideObj(obj,action)
{
	switch(action) {
		case 'hide':
			obj.style.display = 'none';
			break;
		case 'show':
			obj.style.display = 'block';
			break;
		case 'toggle':
			if(obj.style.display == 'block') {
				obj.style.display = 'none';
			} else {
				obj.style.display = 'block';
			}
			break;
	}
}

function changeImage(idImg,srcNewImage)
{
	if(document.getElementById(idImg)) {
		document.getElementById(idImg).src = srcNewImage;
	}	
}

