// Nannette Thacker http://www.shiningstar.net
function confirmSubmit()
{
var agree=confirm("Are you sure you want to do that?");
if (agree)
        return true ;
else
        return false ;
}
