// Nannette Thacker http://www.shiningstar.net
function confirmaction()
{
var agree=confirm("are you sure you wish to take this action?");
if (agree)
    return true ;
else
    return false ;
}
