<!--
// SetFrames JavaScript (C)1997 Cyril Pannetier - La Petite Boutique JavaScript -
// web : http://www.mygale.org/08/pannetie
// e-mail : pannetie@mygale.org
// Ce script est librement utilisable. Merci de ne pas effacer ces commentaires.

function SetFrames(Frame1,Fichier1,Frame2,Fichier2) {

	parent.frames[Frame1].location.href=Fichier1;
	parent.frames[Frame2].location.href=Fichier2;
}
//-->

