/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function set_contact(naam)
{
	jQuery.ajax(
    {
        type: "POST",
        url: HTTP_PATH+"modules/contact/ajax/set_contact.php",
        data: "naam="+naam,
        dataType: 'json',
        async: false,
        success: function(data)
        {
            if(data.status != 'gelukt')
            {            
                alert(data);
            }
            else
            {
                parent.parent.location = HTTP_PATH+"1331/Contact";
            }
        }
    });
}
