// Augmenter ou réduire la taille du texte
var currentSize = 10;
var minSize = 9;
var maxSize = 12;
function resizeFont(size)
{
	currentSize += size;
	currentSize = (currentSize<minSize) ? minSize : ((currentSize>maxSize) ? maxSize : currentSize);

	if (document.getElementById('partiecentralegauche'))
	{
		document.getElementById('partiecentralegauche').style.fontSize = (currentSize/10)+'em';
	}
}

function addfav()
{
	if (document.all)
	{
		window.external.AddFavorite(window.document.location,window.document.title)
	}
	else
	{
		alert ("Votre navigateur ne connaît pas cette commande.");
	}
}

function addstart()
{
	if (document.all)
	{
		setHomePage(window.document.location)
	}
	else
	{
		alert ("Votre navigateur ne connaît pas cette commande.");
	}
}

