// Fonction permettant de recharger la page lors d'un resize.

	saveInnerWidth = window.innerWidth;
	saveInnerHeight = window.innerHeight;

function resize() {
    if(document.layers)
    {
		if (saveInnerWidth < window.innerWidth || 
			saveInnerWidth > window.innerWidth || 
			saveInnerHeight > window.innerHeight || 
			saveInnerHeight < window.innerHeight ) 
		{
			window.location.reload();
		}
    }
    if(document.all)
		window.location.reload();
}
