/**
 * TGA
 * GOBIE
 * @ Version 1.01
 * @ Copyright 2005/08/22
 **/


/**
 * Displays an confirmation box beforme to submit a "DROP/DELETE/ALTER" query.
 * This function is called while clicking links
 *
 * @param   object   the link
 * @param   object   the sql query to submit
 *
 * @return  boolean  whether to run the query or not
 */

<!--
function confirmDel(theLink)
{

    var is_confirmed = confirm('Confirmez la suppression :');
    if (is_confirmed) {
        theLink.href += '&is_js_confirmed=1';
    }

    return is_confirmed;

} // end of the 'confirmLink()' function

function AgrandirPhoto($pht,$dir)
{
    window.open('popup_image.php?pht='+$pht+'&dir='+$dir,'WinPopup','toolbar=no,resizable=yes,scrollbars=yes,width=500,height=400');
} // end of AgrandirPhoto
//-->

