function f_MouseOver(strImage)
{
	strNomImage = new String(document.images[strImage].src);
	strNouveauNom = strNomImage.replace('_off', '_on');
	
	document.images[strImage].src = strNouveauNom;
}

function f_MouseOut(strImage)
{
	strNomImage = new String(document.images[strImage].src);
	strNouveauNom = strNomImage.replace('_on', '_off');
	
	document.images[strImage].src = strNouveauNom;
}

function NewWindow(mypage, w, h, scroll)
{
	var winl;
	var wint;
	
	winl = (screen.width - w) / 2;
	wint = (screen.height - h) / 2;

	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',menubar=no,status=no,toolbar=no,location=no,directories=no'

	win = window.open(mypage,'', winprops)
}

