//
// FUNCTIONS ASSOCIEES AU SITE SPIP
//

var cResColor ="";
var sz=11 // taille par defaut police
var hl=13 // line height

function over(oCell,cImg)
{
  cResColor=oCell.style.backgroundColor
  oCell.style.backgroundColor='#5A829C';
  oCell.style.cursor='hand';
  oCell.style.borderWidth='1px';
  oCell.style.borderColor='#333333';
  oCell.style.borderStyle='solid';
 
  document.images[cImg].src="IMG/puce-rouge.gif";
}

function out(oCell,cImg)
{
  oCell.style.backgroundColor=cResColor; //'#304060'
  oCell.style.cursor='default';
  oCell.style.borderWidth='1px';
  oCell.style.borderColor='#304060';
  oCell.style.borderStyle='solid';
   document.images[cImg].src="IMG/puce-verte.gif";

}
function openloc(url,h,l){
	
	var attrib="top=10,left=10,height=500,width=450"
	var w=window.open(url,'',attrib+',menubar=yes,toolbar=no,resizable=yes,scrollbars=yes')
}

function listing(){
	if (n==1) document.write("<td bgcolor='#FDFEE2' height='30' valign='middle' >");
	if (n==2) document.write("<td bgcolor='#FFDE9B' height='30' valign='middle'>");
	n=n+1;
	if (n==3) n=1;
	//bgcolor='#FDFEE2'
	//bgcolor='#FFDE9B'
}
function txtsize(change) {
  if (document.getElementById){
  	if (8<sz+change&&sz+change<20){
  	obj=document.getElementById("article");
  	//M.E.R taille courante
  	sz=sz+change;
  	hl=hl+change;
  	obj.style.fontSize  = sz+"pt";
  	obj.style.lineHeight= hl+"pt";
  		}
    }	
}
function blockswap(id) {
  obj=document.getElementById(id)   ;
  if (obj==null) return ;
  // idpar=obj.parentNode ;
  // idpar.style.fontSize =  (idpar.style.fontSize=="10px" ? "20":"10px") ;
  obj.style.display    =  (obj.style.display=="none" ? "block" : "none") ;
  // if (document.getElementById)
}


