// JavaScript Document
var	 img = new Image();	
var chemin;
var got;
var img_var;
var Pic = new Array();
var hauteur = haut();
var pos;


function haut() {

var ht = window.innerHeight;

if (ht < 510) {
	hauteur = 0;
	}
else {
	hauteur = ht - 510;
	hauteur /= 2;
	}
return hauteur;
}


function fleche(on) {
	img.src = "img/fleche_off.jpg";
	document.images.fleche1.src = img.src;	
	document.images.fleche2.src = img.src;	
	document.images.fleche3.src = img.src;	
	document.images.fleche4.src = img.src;	
	document.images.fleche5.src = img.src;	
	document.images.fleche6.src = img.src;	
	document.images.fleche7.src = img.src;	
	img.src = "img/fleche.jpg";
	pos = "fleche" + on;
	document.images[pos].src = img.src;
}

function gotou() {

var wide = window.screen.availWidth;
var high = window.screen.availHeight;
	
chemin = document.images.mainImage.src;

got = chemin.length;
pos = chemin.substr(51,got);

if (pos == "1.jpg") {
	window.open('http://www.catherine-gouny.fr/','name','toolbar=no,status=no,scrollbars=yes,location=yes,menubar=yes,directories=no,width=' + wide +',height=' + high +',top=0,left=0'	);
	}
if (pos == "2.jpg") {
	window.open('http://www.hoteldestailles.com/','name','toolbar=no,status=no,scrollbars=yes,location=yes,menubar=yes,directories=no,width=' + wide +',height=' + high +',top=0,left=0'	);
	}
if (pos == "3.jpg") {
	window.open('http://www.gillestrillard.fr/','name','toolbar=no,status=no,scrollbars=yes,location=yes,menubar=yes,directories=no,width=' + wide +',height=' + high +',top=0,left=0'	);
	}
if (pos == "4.jpg") {
	window.open('http://www.berthault.eu/','name','toolbar=no,status=no,scrollbars=yes,location=yes,menubar=yes,directories=no,width=' + wide +',height=' + high +',top=0,left=0'	);
	}
if (pos == "5.jpg") {
	window.open('http://www.coquecigrues.com/','name','toolbar=no,status=no,scrollbars=yes,location=yes,menubar=yes,directories=no,width=' + wide +',height=' + high +',top=0,left=0'	);
	}
if (pos == "6.jpg") {
	window.open('http://www.foucaud.fr/','name','toolbar=no,status=no,scrollbars=yes,location=yes,menubar=yes,directories=no,width=' + wide +',height=' + high +',top=0,left=0'	);
	}
if (pos == "7.jpg") {
	window.open('http://www.conceptrice-redactrice.fr/','name','toolbar=no,status=no,scrollbars=yes,location=yes,menubar=yes,directories=no,width=' + wide +',height=' + high +',top=0,left=0'	);
	}
if (pos == "8.jpg") {
	window.open('http://www.ericcuvillier.com/','name','toolbar=no,status=no,scrollbars=yes,location=yes,menubar=yes,directories=no,width=' + wide +',height=' + high +',top=0,left=0'	);
	}
if (pos == "9.jpg") {
	window.open('http://www.crosf.fr/','name','toolbar=no,status=no,scrollbars=yes,location=yes,menubar=yes,directories=no,width=' + wide +',height=' + high +',top=0,left=0'	);
	}
if (pos == "10.jpg") {
	window.open('http://www.gettyimages.fr/','name','toolbar=no,status=no,scrollbars=yes,location=yes,menubar=yes,directories=no,width=' + wide +',height=' + high +',top=0,left=0'	);
	}

}

