// JavaScript Document

function affiche(region){
	
	var LinkItem = document.getElementById(region);
	LinkItem.style.textDecoration = "underline";
	LinkItem.style.backgroundColor = "#CCCCCC";
	document.getElementById("carte").src = 'images/carte/'+region+'.gif';	
}

function cache(region){
	
	var LinkItem = document.getElementById(region);
	LinkItem.style.textDecoration = "none";
	LinkItem.style.backgroundColor = "#FFFFFF";
	document.getElementById("carte").src = 'images/carte/france.gif';	
	
}

function preloader()
{
	var regions = new Array("alsace","aquitaine","auvergne","bassenormandie","bourgogne","bretagne","centre","champagneardenne","franchecompte","hautenormandie","iledefrance","languedoc","limousin","loire","lorraine","midipyrenees","nord","picardie","poitoucharentes","provence","rhones");
	for(Val in regions){
	RegionImage[Val] = new Image();
	RegionImage[Val].src = 'images/carte/'+regions[Val]+".gif";
	}
}

function favoris() {
if ( navigator.appName != 'Microsoft Internet Explorer' )
{ window.sidebar.addPanel("VieuxBicloo.com","http://www.vieuxbicloo.com/",""); }
else { window.external.AddFavorite("http://www.vieuxbicloo.com/","VieuxBicloo.com"); } }



function hide(id,id2,texte) 
	{
		if (texte == 'velo') {
			document.getElementById(id).style.display = 'block';
			document.getElementById(id2).style.display = 'none';
		} else if (texte == 'accessoire'){
			document.getElementById(id2).style.display = 'block';
			document.getElementById(id).style.display = 'none';
		}
	}
	
function pagi_redi(page,url,param)
	{
		document.location.href=url+param+page;
	}