/*********************************************************/
/*
/* Fonctions JavaScript - C' une idee events
/* 
/*
/*********************************************************/


//Images

function Rollover(img) {
   img.src="./images/puce_r.gif";
}
function Rollout(img) {
   img.src="./images/puce_b.gif";
}

function Roll_gallery(img,source) {
   img.src=source;
}

function Show(elmt) {
	document.getElementById(elmt).style.display='block';
}

function Hide(elmt) {
	document.getElementById(elmt).style.display='none';
}


function Verifmail(email)

{
	var reg = new RegExp('^[A-Z0-9._%+-]+@[A-Z0-9_.-]+\.[A-Z]{2,4}$', 'i');

	if(email.value.length<1)
	{
		alert('Le champ Email est obligatoire.');
		return(false);
	}
	else
	{

		if(reg.test(email.value))
		{
			return(true);
		}
		else
		{
			alert('Veuillez saisir une adresse email valide.');
			return(false);
		}
	}
}


function ouvre_fenetre(page,width,height) {
   window.open(page,"nom_fenetre","menubar=no, status=no, width="+width+", height="+height+"");
}

function ouvre_fenetre_portfolio(page,width,height) {
   window.open(page,"nom_fenetre","menubar=no, resizable=yes, status=no, scrollbars=yes, width="+width+"");
}

