<!-- Begin
function copy(theField) {
	//var tempval=eval("document."+theField);
	tempval = document.getElementById(theField);
	tempval.focus();
	tempval.select();
	therange=tempval.createTextRange();
	therange.execCommand("Copy");
	window.status="Le code HTML selectionné a été copié dans le presse-papiers !";
	setTimeout("window.status=''",5000);
}
// -->


