viewMore = function(elemaction,elemdeploy) {
	var elmtodeploy		=		document.getElementById(elemdeploy);
	
	if(elmtodeploy.style.display	!=	'block'){
		elemaction.src	=		path+'images/moins.gif';
		elmtodeploy.style.display	= 'block';
	}
	else{
		elemaction.src	=		path+'images/plus.gif';
		elmtodeploy.style.display	= 'none';
	}
}
