/*
mod_st2i_fcd.js
Date:2008-02-20
Société:ST2I
Auteur:Olivier GILLOT
Mail:contact@st2i.com
Web:http://www.st2i.com
*/

var agt=navigator.userAgent.toLowerCase();
var is_ns  = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1) 
                && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1) 
                && (agt.indexOf('webtv')==-1)); 
var is_firefox   = (agt.indexOf("firefox") != -1);
var is_ie   = (agt.indexOf("msie") != -1);

function getObject (aID) {
	if (is_ie)
    	return document.all[aID];
	else
		return document.getElementById(aID);
}

function show_content(id) {
	for (i=0;i<10; i++) {
	name = 'mod_st2i_fcd_' + i;
	titre = 'mod_st2i_fcd_t' + i;
		if (getObject(name)) {
			if (id == i) {
				getObject(name).style.display="block";
				getObject(titre).style.display="block";
			} else {
				getObject(name).style.display="none";
				getObject(titre).style.display="none";
			}
		}
	}

}

