function Alert(title,content,callback,button_content,vars){
	
	var _this 	= this;	
	_this.Inherits( Popup,title, content,vars);
	_this.popup_options = document.createElement('div');
	_this.ok 			= document.createElement('div');
	
	_this.popup_options.className = 'popupOptions';
	_this.ok.className = 'bouton';	
	
	if(!_this['yes_content']){
		
		_this.ok.innerHTML = 'ok';
		
	}	else{
		
		_this.ok.innerHTML = _this['yes_content'];	
		
	}
	
	_this.popup_options.appendChild(this.ok);
	_this.cont.appendChild(_this.popup_options);

	if(callback != null && callback != ""){
		addEvent(_this.ok,'mousedown',callback);
	}	
	addEvent(_this.ok,'mousedown',_this.boxClose);

}
