// 17:43 17/02/2009
function indique (title, url) {

    if (title == '' || url == '') {
        document.getElementById('form_indique_title').value = document.title;
        document.getElementById('form_indique_url').value = document.location;
    } else {
        document.getElementById('form_indique_title').value = title;
        document.getElementById('form_indique_url').value = url;
    }

    document.forms.form_indique.submit();
}