var DEBUG=0
var winW = 630, winH = 460;


function boutons()
{
document.write('<center>');
document.write('<img src="boutons.jpg" border="0" usemap="#boutons_map">');
document.write('</center>');
document.write('<map name="boutons_map">');
document.write('<area shape="rect" coords="0,0,170,30" href="ou_nous_sommes.html">');
document.write('<area shape="rect" coords="210,0,480,30" href="festichval.html">');
document.write('<area shape="rect" coords="520,0,690,30" href="archives.html">');
document.write('<area shape="rect" coords="730,0,900,30" href="contacts.html">');
document.write('</map>');
document.write('<br>');
}

function EnvoieMailA(Domaine,Nom,Sujet,Texte)
{
document.write('<a href=\"mailto:'+Nom+'@'+Domaine+'?subject='+Sujet+'&body='+Texte+'\">');
document.write(Nom+'@'+Domaine);
document.write('</a>');
}

function centrer(largeur, hauteur)
{
var x=0;
var y=0;
taille();

x=(winW - largeur) / 2;
y=(winH - hauteur) / 2;
if (x<0)
	x=0;
if (y<0)
	y=0
if (DEBUG)
	alert("<div style='position:absolute;top:"+y+"px;left:"+x+"px;'>");
document.write("<div style='position:absolute;top:"+y+"px;left:"+x+"px;'>");
}

function fin_centrer()
{
document.write("</div>");
}

function taille()
{

// voir http://www.softcomplex.com/docs/get_window_size_and_scrollbar_position.html
var name = navigator.appName
if (DEBUG)
	alert(name);
if (name=="Microsoft Internet Explorer")
	{
	winW=document.body.clientWidth;
	winH=document.body.clientHeight;
	}
if (name=="Netscape")
	{
	winW = window.innerWidth;
	winH = window.innerHeight;
	}

if (DEBUG)
	alert("Brower = "+name+" - Window width = "+winW+" - Window height = "+winH);
}

function navigateur()
{
var nav=(navigator.appName).toLowerCase();
if (nav.indexOf("netscape") !=-1 )
	{
	alert("Netscape"); 
	}
else 
	if (nav.indexOf("microsoft internet explorer") !=-1)
		{
		alert("Microsoft Internet Explorer");
		}
	else
		alert("Autre Navigateur");
}

