<!--- routines javascript
listediv_id=new Array(
"picto01",
"picto02",
"picto03",
"picto04",
"picto05",
"picto06");
listediv_left=new Array(
204,
275,
342,
777,
834,
777);
listediv_top=new Array(
145,
145,
145,
145,
145,
0);

function redim()
{
	for(i=0;i<listediv_id.length;i++)
	{
		var calque=document.getElementById(listediv_id[i]);

		var offset_x=Math.floor((parseInt(document.body.clientWidth)-900)/2);
		var offset_y=Math.floor((parseInt(document.body.clientHeight)-550)/2);

		if(offset_x<0)offset_x=0;
		if(offset_y<0)offset_y=0;

		calque.style.left=offset_x+listediv_left[i];
		calque.style.top=offset_y+listediv_top[i];
}
}
//  --->
