//--------------------------------------------
function change_color(pointer, color)
{
	pointer.style.backgroundColor=color;
	pointer.style.bordercolordark='#CCCCCC';
}
//--------------------------------------------
function Goto_Url(url)
{
 document.location=url;
}
//--------------------------------------------
var xleft=100;
function fenetre(file)
{
	fenetre2(file, 100, 50, 600, 560)  ;
}
//--------------------------------------------
function fenetre2(file, l, t, w, h)
{ 
  window.open(file, "","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1,width="+w+",height="+h+",left="+l+",top="+t);
}
//--------------------------------------------
function fenetre3(file, w, h)
{ 
  l=(screen.width-w) / 2;
  t=(screen.height-h) / 2;
  window.open(file, "","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1,width="+w+",height="+h+",left="+l+",top="+t);
}
//--------------------------------------------
function setStyle(Element, theStyle)
{
	 if (theStyle == '' || typeof(Element.style) == 'undefined') {
		  return false;
	 }
	Element.style.cssText = theStyle;

	 return true;
}
//--------------------------------------------