function PopupCentrer(page,largeur,hauteur,options){
    var top = (screen.height-hauteur)/2;
    var left = (screen.width-largeur)/2;
    var popup = window.open(page,'','top='+top+',left='+left+',width='+largeur+',height='+hauteur+','+options);
    if(!popup){// on verifie que la popup s'est ouverte
        alert("Veuillez d&eacute;sactiver votre anti popup.\r\nMerci.");
    }
}

var NbImages = 8;

// Table contenant les images
ListeImages = new Array(NbImages);

ListeImages[0] = "images/image1.jpg";
ListeImages[1] = "images/image2.jpg";
ListeImages[2] = "images/image6.jpg";
ListeImages[3] = "images/image7.jpg";
ListeImages[4] = "images/image8.jpg";
ListeImages[5] = "images/image9.jpg";
ListeImages[6] = "images/image3.jpg";
ListeImages[7] = "images/image4.jpg";

function Aleatoire(mini,maxi) {
	var x = -1;

	while (x < mini) {
		x = Math.round(Math.random() * maxi);
	}

	return x;
}

function PutImage() {
	i = Aleatoire(0,NbImages-1);
	
	document.write("<IMG SRC=" + ListeImages[i] + " />");
}


i1 = new Image;
i1.src = "http://www.adresseimmo.lu/images/menu_on.jpg";


function makevisible(cur,which)
	{
	if(document.getElementById)
		{
		if (which==0)
			{
			if(document.all)
				cur.filters.alpha.opacity=100
			else
				cur.style.setProperty("-moz-opacity", 1, "");
			}
		else
			{
			if(document.all)
				cur.filters.alpha.opacity=40
			else
				cur.style.setProperty("-moz-opacity", .4, "");
			}
		}
	}
	
function scroll(){
    document.write('<marquee style="background-color:#666ba3; color: #FFFFFF; font-family:geneva; font-size:12px; width:798px; height:15px; vertical-align:middle" behavior="scroll" direction="left" scrollamount="4" scrolldelay="50" onmouseout="this.start();">ADRESSE IMMOBILIERE SARL... ENFIN L\'ADRESSE QUE VOUS RECHERCHEZ !!</marquee>');
}

