var glob_aff_div;
var timeout_menu;

function aff_menu(le_div, texte)
{
	clearTimeout(timeout_menu);
	
	var div = document.getElementById(le_div);	
	div.innerHTML = texte;
	
	timeout_menu = setTimeout("cach_menu('"+le_div+"')",30000);
}

function cach_menu(le_div)
{	
	var div = document.getElementById(le_div);	
	div.innerHTML = "";
}

function ie()
{
	//alert("on verifie si c'est ie");
	if(navigator.appName.indexOf("Microsoft") != -1)
		return true;
	else
		return false;
}

function aff_webcam()
{
	window.open("page-webcam.html","Webcam","directories=no,location=no,menubars=no,resizable=no,scrollbars=no,status=no,width=340,height=280");
	return true;
}
function aff_player()
{
	window.open("http://players.tv-radio.com/littoral_fm/littoral_fm/audio/TVRAudioPlayer.php?NomStation=Littoral%20FM&AudioTitle=Littoral%20FM&AudioDesc=&UrlLogoStation=&Stream=http://mp3.live.tv-radio.com/littoralfm/all/littoralfm.mp3","Player","directories=no,location=no,menubars=no,resizable=no,scrollbars=no,status=no,width=520,height=250");
	return true;
}
function aff_profil(id)
{
	window.open("../../page-profil-"+id+".html","Profil","directories=no,location=no,menubars=no,resizable=no,scrollbars=yes,status=no,width=810,height=670");
	return true;
}
function aff_comment(id)
{
	window.open("../../page-profil-add_comment"+id+".html","commentaire","directories=no,location=no,menubars=no,resizable=no,scrollbars=no,status=no,width=700,height=140");
	return true;
}
function aff_com(id)
{
	window.open("../../page-article-list_comment"+id+".html","list_commentaire","directories=no,location=no,menubars=no,resizable=no,scrollbars=no,status=no,width=748,height=420");
	return true;
}
function aff_nvmessage(id)
{
	window.open("../../page-nouveau_message-"+id+".html","nouveaumessage","directories=no,location=no,menubars=no,resizable=no,scrollbars=no,status=no,width=520,height=320");
	return true;
}
function aff_liremessage(id)
{
	window.open("../../page-lire_message-"+id+".html","liremessage","directories=no,location=no,menubars=no,resizable=no,scrollbars=no,status=no,width=520,height=320");
	return true;
}

function verif_enter(e)
{
	if(window.event) // IE
	{
		keynum = e.keyCode;
	}
	else if(e.which) // Netscape/Firefox/Opera
	{
		keynum = e.which;
	}
	if(keynum == 13)
	{
		envoyer_mess();
	}
}

function createXhrObject()
{
    if (window.XMLHttpRequest)
        return new XMLHttpRequest();
 
    if (window.ActiveXObject)
    {
        var names = [
            "Msxml2.XMLHTTP.6.0",
            "Msxml2.XMLHTTP.3.0",
            "Msxml2.XMLHTTP",
            "Microsoft.XMLHTTP"
        ];
        for(var i in names)
        {
            try{ return new ActiveXObject(names[i]); }
            catch(e){}
        }
    }
    window.alert("Votre navigateur ne prend pas en charge l'objet XMLHTTPRequest.");
    return null; // non supporté
}