$(function() { var contactBoxy = null; $('.register').click(function(){ var boxy_content; boxy_content += "

LOGIN INFORMATION:

Salutation*:

Name*:

Email*:

Retype Email*:

Create your own password*:


Company*:

Country*:

Phone:


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


Sending... Please wait
"); $.post("http://www.penedabali.com/register.php", {salut: c.find("#salut").val(), register_name: c.find("#register_name").val(), register_email: c.find("#register_email").val(), register_remail: c.find("#register_remail").val(), register_password: c.find("#register_password").val(), register_company: c.find("#register_company").val(), register_country: c.find("#register_country").val(), register_phone: c.find("#register_phone").val()}, function(data){ if(data=='sendSuccess'){ contactBoxy.setContent("
Register success!
Please check your mailbox to confirm your email address

"); }else{ contactBoxy.setContent("
"+data+"
"); } }); return false; }); } }); return false; }); });