function ouvrirFenetrePopUp(url) {
	if(this.centrer) {
		this.top = (screen.availHeight-this.height-30)/2;
		this.left = (screen.availWidth-this.width-30)/2 ;
	}
	var params = "width="+this.width+",height="+this.height+",top="+this.top+",left="+this.left+",status=1,resizable=1"+(this.scroll?",scrollbars=1":"")+(this.menu?",menubar=1":"");
	var nomFenetreComplet = this.prefixNom + this.nom
	this.fenetre = window.open(url,nomFenetreComplet,params);
	this.fenetre.focus();
}

function FenetrePopUp() {
	this.fenetre = null;
	this.prefixNom = "LSMLS_";
	this.nom = "";
	this.top = "10";
	this.left = "10";
	this.width = "100";
	this.height = "100";
	this.scroll = false;
	this.menu = false;
	this.centrer = false;
}

FenetrePopUp.prototype.ouvrir = ouvrirFenetrePopUp;
