
/////////////////////
// setNavImg
/////////////////////
function setNavImg(name,state) {
	if (name == 'num'+rub) state = 'on';
	var obj = document.images[name];
	if (obj) {
		obj.src = IMGPATH + '/' + name + '_' + state + '.gif';
	}
}

/////////////////////
// initImgsRub
/////////////////////
function initImgsFolder(rub,prefixe,rub2) {
	if (rub2 && rub2 == "SEARCH") {
		img_bg = 'fd08.jpg';
		fleche_haut = 'flech1a.gif';
		fleche_bas = 'flech1b.gif';
	}
	else {
		img_bg = 'fd0'+rub+'.jpg';
		fleche_haut = 'flech'+rub+'a.gif';
		fleche_bas = 'flech'+rub+'b.gif';
	}
	img_titre = prefixe+'tit'+rub+'.gif';
}


/////////////////////
// MiscOpen
/////////////////////
function MiscOpen(a) {
	window.open(a,"","status=0,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,width=200,height=172,left=430,top=260");
}


/////////////////////
// embedMovie
/////////////////////
function embedMovie(movie,w,h) {
	if (!movie) { return; }
	if (!w) { w = 192; }
	if (!h) { h = 160; }
	document.write('<embed width='+w+' height='+h+' controller="true" autostart="false" loop="False" ');
	document.write(' src="'+movie+'" ');
	document.write(' pluginspage="http://www.apple.com/quicktime/download/index.html">');
	document.write('</EMBED>');
}