function popup(mapage, largeur, hauteur)
    {
	var a;
	  a=window.open(mapage, 'popup', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,left=0,top=0,width=' + largeur + ',height=' + hauteur);
    }	

var slideShowSpeed = 15000

var crossFadeDuration = 3

var Pic = new Array() 

Pic[0] = 'img/path_adv1.jpg'
Pic[1] = 'img/path_adv2.jpg'
Pic[2] = 'img/path_adv3.jpg'
Pic[3] = 'img/path_adv4.jpg'
Pic[4] = 'img/path_adv5.jpg'
Pic[5] = 'img/path_adv6.jpg'

var Bg = new Array() 

Bg[0] = 'img/bg/path_bg1.gif'
Bg[1] = 'img/bg/path_bg2.gif'
Bg[2] = 'img/bg/path_bg3.gif'
Bg[3] = 'img/bg/path_bg4.gif'
Bg[4] = 'img/bg/path_bg5.gif'
Bg[5] = 'img/bg/path_bg6.gif'

var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
preLoad[i] = new Image()
preLoad[i].src = Pic[i]
}

var preLoad1 = new Array()
for (i = 0; i < p; i++){
preLoad1[i] = new Image()
preLoad1[i].src = Bg[i]
}

function runSlideShow(){
if (document.all){
document.images.SlideShow.style.filter="blendTrans(duration=5)"
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
document.images.SlideShow.filters.blendTrans.Apply() 
document.all['SHBg'].background=preLoad1[j].src
}
document.images.SlideShow.src = preLoad[j].src
if (document.all){
document.images.SlideShow.filters.blendTrans.Play()
}
j = j + 1
if (j > (p-1)) j=0
t = setTimeout('runSlideShow()', slideShowSpeed)
}

function runSlideShow2(){
if (document.all){
document.images.SlideShow2.style.filter="blendTrans(duration=5)"
document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)"
document.images.SlideShow2.filters.blendTrans.Apply() 
}
document.images.SlideShow2.src = preLoad[j].src
if (document.all){
document.images.SlideShow2.filters.blendTrans.Play()
}
j = j + 1
if (j > (p-1)) j=0
t = setTimeout('runSlideShow2()', slideShow2Speed)
}