/*
* lib.js : librairie javascript de la NewsLetter
**/

/*
*
**/
function moveContact(src, tg)
{
	for(var i=0; i<src.options.length; i++)
	{
		if(src.options[i].selected)
		{
			tg.options[tg.options.length]=new Option(src.options[i].text, src.options[i].value);
			src.options[i] = null;
			moveContact(src, tg);
			break;
		}
	}
}
/*
*
**/
function moveAllContact(src, tg)
{
	for(var i=0; i<src.options.length; i++)
	{
			tg.options[tg.options.length]=new Option(src.options[i].text, src.options[i].value);
			src.options[i] = null;
			moveAllContact(src, tg);
			break;
	}
}
/*
*
**/
function selectData(obj)
{
	for(var i=0; i<obj.options.length; i++)
	{
		obj.options[i].selected="selected";
	}
	return true;
}
/*
*
**/
function getNumArt()
{
	

}
