function recupererObjet(id) {
var objet;
if (document.getElementById) {
objet = document.getElementById(id);
}
else if (document.all) {
objet = document.all[name];
}
else if (document.layers) {
objet = document.layers[name];
}
return objet;
}
var txt_navigateurs = '';
txt_navigateurs = "
Browsers
\
Internet Explorer : 47%
\
Firefox : 26%
\
Inconnu : 25%
\
";
var txt_os = '';
txt_os = "Sist.operativi
\
WinXP : 41%
\
Inconnu : 25%
\
WinVista : 15%
\
";
var txt_moteurs = '';
txt_moteurs = "Motori di r.
\
Google France : 59%
\
Google : 10%
\
Google Polska : 3%
\
";
var txt_final = '';
txt_final = txt_navigateurs;
if(txt_final == '') {
txt_final = txt_os;
}
else {
txt_final = txt_final+'
'+txt_os;
}
if(txt_final == '') {
txt_final = txt_moteurs;
}
else {
txt_final = txt_final+'
'+txt_moteurs;
}
recupererObjet('keypi_widget').innerHTML = txt_final;