
function send_email_dti(form)
{
    $.post("/scripts/email.pl", $(form).serialize(), dti_email_sent, "xml");
    return false;
    
}


function dti_email_sent(xml)
{
    if(xml)
    {
        $(xml).find('message').each(function(){
            var content = $(this).find('content').text();
            alert(content);
        });
    }
}

