<!--
//FONCTION QUI VÉRIFIE LA VERSION DU BROWSER UTILISÉE
//ET AINSI AJUSTER LA HAUTEUR DE L'ARCHE BLEU

function Is() {
	var version = (navigator.appName.toLowerCase()+navigator.appVersion.toLowerCase());

	this.ns = (version.indexOf('netscape') > -1);
	this.ie = (version.indexOf('msie') > -1);
	//document.write (ie)
}

var is = new Is()

function ResizeImg() {

	var imgHeight=0;

	if(is.ns){
		imgHeight = self.innerHeight;
		ReloadPage(true);
	}

	else if(is.ie){
		imgHeight = "100%";
	}
	
	else {	// older browsers, and some obscure ones
		return '<img src="imgIntro/arc600X239.jpg" width="239" height="800" border="0" alt="DTI Télécom">';
	}
	return '<img src="imgIntro/arc600X239.jpg" width="239" height="' + imgHeight + ' border="0" alt="DTI Télécom">';
}

//FONCTION QUI RAFRAICHIT LA PAGE DANS NETSCAPE APRÈS AVOIR CHANGÉ SA DIMENSION

function ReloadPage(init) {  //reloads the window if ns resized
  if (init==true){
    document.pgW=innerWidth;
    document.pgH=innerHeight;
    onresize=ReloadPage; }

  else if (innerWidth!=document.pgW || innerHeight!=document.pgH){
  location.reload();}
}
//-->