// ************************************************************************
// At WebData - Version 1.2.9 - PRELOAD.JS
// ************************************************************************
// Conception & Programmation : At ss2i - http://www.at-ssii.com
// Copyright © 1998-2003 : At services - http://www.at-services.ch
// ************************************************************************
// Dernières modifications : 22-05-2003 09:41
// ************************************************************************
// PRECHARGEMENT D'IMAGES
// ************************************************************************

var table = new Array(
"/charte/picto_acces_pro_f2.gif",
"/chartepicto_mon_compte_f2.gif");

var myimages = new Array();

function preload()
{
	for ( i = 0; i < table.length; i++ )
	{
		myimages[i] = new Image();
		myimages[i].src = table[i];
	}
}
