Date: 02/06/06 (Code WTF) Keywords: no keywords 
function confirmSubmit()
{
    var agree = confirm("Are you sure you wish to delete this gallery?");
    if (agree)
        return true;
    else
        return false;
}
Source: http://community.livejournal.com/code_wtf/26806.html 
  |