﻿// JScript File

function OverbackM(objet)
{
objet.style.color="#D2C778"; //02C6F2
//objet.style.fontWeight='bold';
//objet.style.fontStyle='italic';
}

function OutbackM(objet)
{
objet.style.color="#FFFFFF";
//objet.style.fontWeight='normal';
//objet.style.fontStyle='normal';
}

var w;
function PopupCentrer(page,largeur,hauteur) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",scrollbars=0, toolbar=0, menubar=0, location=0, resizable=0, status=0, directories=0");
}
function Ouvrir(page) {
  w=window.open(page,"", "scrollbars=1, toolbar=0, menubar=0, location=0, resizable=0, status=0, directories=0, width=200, height=200");
}
function Fermer() {
  if (w.document) {  w.close(); }
}

