if(top!=self) top.location=self.location;
var xhr = null;

// Fonction de creation de l'objet XMLHttpRequest qui resservira pour chaques fonctions AJAX
function getXhr()
 {
  if(window.XMLHttpRequest) xhr = new XMLHttpRequest();
  else if(window.ActiveXObject)
   {
    try
     {
      xhr = new ActiveXObject("Msxml2.XMLHTTP");
     }
    catch (e)
     {
      xhr = new ActiveXObject("Microsoft.XMLHTTP");
     }
   }
  else
   {
    alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest, veuillez le mettre à jour");
    xhr = false;
   }
 }

function surveille(article)
 {
  getXhr();
  xhr.open("GET", "spip.php?page=compte&id_article="+article, true);
  xhr.send(null);
 }

function surveille_sites(id_syndic)
 {
  getXhr();
  xhr.open("GET", "spip.php?page=compte_sites&id_syndic="+id_syndic, true);
  xhr.send(null);
 }

function surveille_auteurs(id_auteur)
 {
  getXhr();
  xhr.open("GET", "spip.php?page=compte_auteurs&id_auteur="+id_auteur, true);
  xhr.send(null);
 }

function carte(url,w,h){
  var Left=window.screen.width/2-(w/2);
  var Top=50;
  var Configuration="'scrollbar=yes, width=" + w + ", height=" + h + ", left=" + Left + ", top=" + Top;
  window.open(url,'',Configuration);
}

function visibilite(thingId)
{
	var targetElement;
	targetElement = document.getElementById(thingId) ;
	if (targetElement.style.display == "none")
		{
			targetElement.style.display = "" ;
		} else {
			targetElement.style.display = "none" ;
		}
}

function OpenCoordonne(url,aze,w,h){  
if (aze==1) { url=url+"&url="+document.URL; }
  var Left=window.screen.width/2-(w/2);
  var Top=50;
  //Videment faut modifier la config!!
  var Configuration="'toolbar=no, menubar=no, location=no, directories=no, status=no, resizeable=no, width=" + w + ", height=" + h + ", left=" + Left + ", top=" + Top;
  window.open(url,'',Configuration);
}

function favoris() { 
	if ( navigator.appName != 'Microsoft Internet Explorer' ) {
		window.sidebar.addPanel(document.title,document.URL,"");
	} else { 
		window.external.AddFavorite(document.URL,document.title);
	}
} 

function q(w){
	if (document.getElementById("image_visible").style.display == "none")
		{
			visibilite("image_visible");
		}
	document.imageaffiche.src=varimage[w];
}

var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]

};
BrowserDetect.init();
