function OpenMonCompte(){
	$('#monCompteDiv').dialog({
			autoOpen: false,
			resizable: false,
			open: function ()
				{
					$(this).load('/users/mon_compte.php?action=showAccount');
				},
			modal:true,
			width: 700,
			height: 600
		});
}

$('#monCompteLink').click(function(){
	OpenMonCompte();
	$('#monCompteDiv').dialog('open');
	return false;
});

function PostUpdate(){
	$.post('/users/register.php?action=update',$("#registerForm").serialize(), function(data) {
		$("#tabs-MesCoordonnees").html(data);
		ShowBodyLabelMessage("Coordonnees modifiees",1000)	;
	})
}//2012© Copyright Menta Solutions. All rights reserved.

