

/* --------------- script d'ajout aux favorit -----------------------*/
function favoris() {
	if (navigator.appName != 'Microsoft Internet Explorer'){
		window.sidebar.addPanel("PichFolio","http://www.pichfolio.fr/","");
	}
	else {
		window.external.AddFavorite("http://www.pichfolio.fr/","PichFolio");
	}
}

function checkWidth()
{
	if(window.innerWidth){
		Width=window.innerWidth;
	}else{
		if(document.body && document.body.offsetWidth){
			Width=document.body.offsetWidth;
		}
	}
	if(Width<=1024){
		document.getElementById("conteneur_total").style.width = '1024px';
	}else{
		document.getElementById("conteneur_total").style.width = '100%';
	}
}
window.onresize = checkWidth;
