function populate(){
if (iedom){
cross_marquee=document.getelementById? document.getelementById("iemarquee") : document.all.iemarquee
cross_marquee.style.left=marqueewidth+8
cross_marquee.innerHTML=marqueecontent
actualwidth=document.all? cross_marquee.offsetWidth : document.getelementById("temp").offsetWidth
}
else if (document.layers){
ns_marquee=document.ns_marquee.document.ns_marquee2
ns_marquee.left=marqueewidth+8
ns_marquee.document.write(marqueecontent)
ns_marquee.document.close()
actualwidth=ns_marquee.document.width
}
lefttime=setInterval("scrollmarquee()",20)
}


// example:
// onMouseOver="toolTip('tool tip text here')";
// onMouseOut="toolTip()";
// -or-
// onMouseOver="toolTip('more good stuff', '#FFFF00', 'orange')";
// onMouseOut="toolTip()"; 

var ns4 = document.layers;
var ns6 = document.getelementById && !document.all;
var ie4 = document.all;
offsetX = 0;
offsetY = 20;
var toolTipSTYLe="";
function initToolTips()
{
  if(ns4||ns6||ie4)
  {
    if(ns4) toolTipSTYLe = document.toolTipLayer;
    else if(ns6) toolTipSTYLe = document.getelementById("toolTipLayer").style;
    else if(ie4) toolTipSTYLe = document.all.toolTipLayer.style;
    if(ns4) document.captureevents(event.MOUSeMOVe);
    else
    {
      toolTipSTYLe.visibility = "visible";
      toolTipSTYLe.display = "none";
    }
    document.onmousemove = moveToMouseLoc;
  }
}
function toolTip(msg, fg, bg)
{
  if(toolTip.arguments.length < 1) // hide
  {
    if(ns4) toolTipSTYLe.visibility = "hidden";
    else toolTipSTYLe.display = "none";
  }
  else // show
  {
    if(!fg) fg = "#ffffff";
    if(!bg) bg = "#C00808";
    var content =
    '<table border="0" cellspacing="0" cellpadding="1" bgcolor="' + fg + '"><td>' +
    '<table border="0" cellspacing="0" cellpadding="1" bgcolor="' + bg + 
    '"><td align="center"><font face="sans-serif" color="' + fg +
    '" size="-2">&nbsp\;' + msg +
    '&nbsp\;</font></td></table></td></table>';
    if(ns4)
    {
      toolTipSTYLe.document.write(content);
      toolTipSTYLe.document.close();
      toolTipSTYLe.visibility = "visible";
    }
    if(ns6)
    {
      document.getelementById("toolTipLayer").innerHTML = content;
      toolTipSTYLe.display='block'
    }
    if(ie4)
    {
      document.all("toolTipLayer").innerHTML=content;
      toolTipSTYLe.display='block'
    }
  }
}
function moveToMouseLoc(e)
{
  if(ns4||ns6)
  {
    x = e.pageX;
    y = e.pageY;
  }
  else
  {
    x = event.x + document.body.scrollLeft;
    y = event.y + document.body.scrollTop;
  }
  toolTipSTYLe.left = x + offsetX;
  toolTipSTYLe.top = y + offsetY;
  return true;
}

//affiche images en grand
function afficheVignette(cheminVignette,cheminMaxi)
	{
	document.write('<A HReF="javascript:afficheMaxi(\''+cheminMaxi+'\')" onMouseOver="toolTip(\'cliquez ici pour voir en grand\', \'#ffffff\', \'#000000\')" onMouseOut="toolTip()" ><IMG SRC="'+cheminVignette+'" HSPACe=0 VSPACe=0 BORDeR=0 class=\'IMG_agrandir2\' onMouseOver=ejs_img_fx(this) style="FILTeR: progid:DXImageTransform.Microsoft.Pixelate(MaxSquare=100,Duration=1)" onload=ejs_img_fx(this)></A>');
	}
function afficheMaxi(chemin)
	{
		alert('hello');
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HeAD><TITLe>Image</TITLe></HeAD><BODY LeFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHeIGHT=0><CeNTeR><IMG SRC="'+chemin+'" BORDeR=0 NAMe=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></CeNTeR></BODY></HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
	}


/*
SCRIPT TROUVe SUR L'eDITeUR JAVASCRIPT
http://www.editeurjavascript.com
*/
function ejs_img_fx(img){	
	if(img && img.filters && img.filters[0]){
		img.filters[0].apply();
		img.filters[0].play();
	}
}
// Title: Tigra Scroller
// Description: See the demo at url
// URL: http://www.softcomplex.com/products/tigra_scroller/
// Version: 1.4
// Date: 07-03-2003 (mm-dd-yyyy)
// Feedback: feedback@softcomplex.com (specify product title in the subject)
// Note: Permission given to use this script in ANY kind of applications if
//    header lines are left unchanged.
// About us: Our company provides offshore IT consulting services.
//     Contact us at sales@softcomplex.com if you have any programming task you
//     want to be handled by professionals.

// set correct path to Tigra Scroller files
var Tscroll_path_to_files = 'sa-lie.com/'

// please, don't change anything below this line
function Tscroll_init (id) {
	document.write ('<iframe id="Tscr' + id + '" scrolling=no frameborder=no src="' + Tscroll_path_to_files + 'scroll.html?' + id + '" width="1" height="1"></iframe>');
}