﻿// Fichier JScript

function OnResize(taille)
{
	if(document.body.clientWidth > taille)
	{ OnElements((document.body.clientWidth-taille)/2);	}
	else
	{ OnElements(0); }
}
function OnElements(ref)
{ document.getElementById("DivMain").style.left = ref; }
function RollOver(nom, file)
{ document.getElementById(nom).src=file; }
function OnClick(cible, des)
{ window.open(cible, des); }

