function Mailer(){
	this.mensaje = '';
	this.mail	 = '';
	this.nombre  = '';
}

Mailer.prototype.enviar = function(){
	var thisObj = this;
	
	new Ajax.Request('sendmail.php', {
		method: 'post',
		parameters: {mensaje: thisObj.mensaje, mail: thisObj.mail, nombre: thisObj.nombre}
	});

};

Mailer.prototype.setMensaje = function(valor) { this.mensaje = valor;};
Mailer.prototype.setMail    = function(valor) { this.mail    = valor;};
Mailer.prototype.setNombre  = function(valor) { this.nombre  = valor;};

Mailer.prototype.limpiar = function() {
	this.setMensaje('');
	this.setMail('');
	this.setNombre('');
};
