// JavaScript Document

//FONCTION POUR GESTION POPUP **********************************************************
<!-- POPUP -->
function popup(urll,new_width,new_height,name) {
if (document.all){
        var xMax = screen.width, yMax = screen.height;}
                else
                if (document.layers)
                var xMax = window.outerWidth, yMax = window.outerHeight;
                        else
                        var xMax = 800, yMax=600;
                        var xOffset = (xMax - new_width)/2, yOffset = (yMax - new_height)/2;
                        window.open(urll,name,'scrollbars=0,toolbar=0,status=no,menubar=0,resizable=0,width='+new_width+',height='+new_height+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');
}


//FONCTION POUR AJOUT FAVORIS **********************************************************
/*
SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/
nav = navigator.appName.substring(0,3);
ver = navigator.appVersion.substring(0,1)
function addFav()
	{
	if (nav == "Mic" && ver >= 4)
		{
		url_site="http://www.pepinieres-cardon.com";
		titre_site = "Pépinières, Jardinerie & Entreprise CARDON";
		document.write('<A HREF="#" onClick="window.external.AddFavorite(url_site, titre_site);return(false);"><span class="baspage">Ajouter aux favoris</span></A><BR>')
		}
	else
		{
		document.write('Faites CTRL+D pour ajouter ce site &agrave; vos favoris!')
		}
	}