function deroule(param) 
	{	  
	if (document.getElementByid) 
		{
		document.getElementById(param).style.display="block";
		} 
	else if (document.all) 
		{		  
		document.all[param].style.display="block";
		} 
	else if (document.layers) 
		{		  
		document.layers[param].display="block";		
		} 
		
	} 
function enroule(param) 
	{    
	if (document.getElementById) 
		{    
  		document.getElementById(param).style.display="none"; 
		} 
	else if (document.all) 
		{    
		document.all[param].style.display="none";
		} 
	else if (document.layers) 
		{    
		document.layers[param].display="none";    
  		} 
	}


var nb_lettre=0;
var texte="         Pour lire LES ANNONCES DU PORT Cliquez sur 'LE JOURNAL ON LINE'.                  POUR PASSER votre petite annonce A PARTIR DE 15€/mois, Cliquez sur 'PASSEZ VOTRE ANNONCE'";
                                scroll();

function scroll()
        {
        window.status=texte.substring(nb_lettre,texte.length) + texte.substring(0,nb_lettre);
        if (nb_lettre < texte.length)
                nb_lettre++;
        else
                nb_lettre=0;
        setTimeout("scroll()",200);
        }
function getLargeur()
	  {
	  return(window.screen.width-10);		
          }


