$(function() { var contactBoxy = null; $('.retrievePassword').click(function(){ var boxy_content; boxy_content += "
Please insert you email, your password was sent to your email address

Email Aaddress*:

"; contactBoxy = new Boxy(boxy_content, {title: "RETRIEVE PASSWORD",draggable: false, modal: true,behaviours: function(c) {c.find('#feedback').submit(function(){Boxy.get(this).setContent("


Sending... Please wait
"); $.post("http://www.penedabali.com/retrievepassword.php", {email: c.find("#email").val()}, function(data){ contactBoxy.setContent("
"+data+"
"); }); return false; }); } }); return false; }); });