// JavaScript Document

function popup(url,nom,h,w,x,y){
	window.open(url, nom, config='height='+h+', width='+w+', toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no, top='+y+', left='+x+'');
}
function afficheEcran(mess){
	document.getElementById("contenu").innerHTML = mess;
}

//ACCUEIL
function gotopage(filename){
	if(window.XMLHttpRequest) //Firefox
		request = new XMLHttpRequest();
	else if(window.ActiveXObject) //Internet Explorer
		request = new ActiveXObject("Microsoft.XMLHTTP");
	else{ //XMLHttpRequest non supporte par le navigateur
		alert('Votre navigateur ne peut pas acceder \340 ce site \n Veuillez utiliser Firefox ou Internet Explorer');
		return;
		afficheEcran("Impossible d'acc\351der \340 ce site");
	}
	
	function repServeur(){
		if (request.readyState != 4)
			return;
		var reponse=request.responseText;
		afficheEcran(reponse);
	}
	
	var method = "GET";	
	var data=null;
	request.open(method, filename, true);
	request.onreadystatechange = repServeur;
	request.send(data);
}

//CONTACT
function gotocontact(){
	var text = "<iframe height='380' frameborder='no' width='900' scrolling='no' src='http://couratt.olympe-network.com/serveur_cr2h/contact.php' name='iframe'>";
	afficheEcran(text);
}

//FRAME
function gotoframe(height,adress){
	var text = "<iframe height='"+height+"' frameborder='no' width='900' scrolling='no' src='"+adress+"' name='iframe'>";
	afficheEcran(text);
}

