var coldColor = "#000080"
var hotColor  = "#008000"
var motionPix = "7"

var a='<style>'+
'A.InstantLink:link {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix+' 0 0;'+
'  }'+  
'A.InstantLink:visited {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix+' 0 0;}'+  
'A.InstantLink:active {'+
'  color:'+coldColor+';'+
'  text-decoration:none;'+
'  padding:0 '+motionPix+' 0 0;'+
'  }'+  
'A.InstantLink:hover {'+
'  color:'+hotColor+';'+
'  text-decoration:none;'+
'  padding:0 0 0 '+motionPix+';'+
'  }'+
'</style>'
if (document.all || document.getElementById){
    document.write(a)
}

/////////////////////////// popup //////////////////////////////////////////////////////////

function OuvrirPopup(page,nom,option) 
		{
  	window.open(page,nom,option);
		}

//////////////////////// rafraichir ////////////////////////////////////////////////////////

function refresh(page)
		{
	opener.location.href=(page);
		}

/////////////////////// fermer auto ///////////////////////////////////////////////////////

function fermer()
		{
	window.close()
		}

/////////////////////// focus champs ////////////////////////////////////////////////////////

function focus(frm,chp) 
{ 
document.forms[frm].elements[chp].focus(); 
} 

///////////////////////// info bulle ///////////////////////////////////////////////////////