function Prompt(title,content,callBackYes,callBackNo,vars){
		
	var _this 	= this;	
	_this.Inherits( Popup,title,content,vars);
	_this.popup_options = document.createElement('div');
	_this.yes 			= document.createElement('div');
	_this.no 			= document.createElement('div');
	_this.popup_options.className = 'popupOptions';
	_this.yes.className = 'bouton';
	_this.no.className = 'bouton';	
	_this.yes.innerHTML = 'oui';
	_this.no.innerHTML 	= 'non';
	_this.popup_options.appendChild(_this.no);
	_this.popup_options.appendChild(_this.yes);	
	_this.cont.appendChild(_this.popup_options);
				
	if(callBackYes != ''){
		addEvent(_this.yes,'mousedown',	callBackYes);
	}
	
	
	if(callBackNo != ''){
		addEvent(_this.no,'mousedown',	callBackNo);
	}
	
	if(!_this['yes_content']){
		
		_this.yes.innerHTML = 'yes';
		
	}	else{
		
		_this.yes.innerHTML = _this['yes_content'];	
		
	}
	
	if(!_this['no_content']){
		
		_this.no.innerHTML = 'no';
		
	}	else{
		
		_this.no.innerHTML = _this['no_content'];	
		
	}
	
	addEvent(_this.yes,'mousedown',	_this.boxClose);
	addEvent(_this.no,'mousedown',	_this.boxClose);
	
	
}



