// JavaScript Document
// 5sur5

//
//Fonction roll over menu :
function StatOn(Pict){
StatOff();
if (document.images[Pict]){
BckTargetPict=Pict;
BckPict.src=document.images[Pict].src;
document.images[Pict].src=eval(Pict+".src");}}
//
function StatOff()
{
	if (BckTargetPict>"") {
		document.images[BckTargetPict].src=BckPict.src;
	}
	BckTargetPict="";
}
//
//Fonction open popup :
var newwindow;
function popmoissa(url,property)
{
	newwindow=window.open(url,'name',property);
	if (window.focus) {newwindow.focus()}
}
//
// Fonction bouton annuler :
function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
