function confirmSubmit(themsg)
{
var agree=confirm(+themsg+);
if (agree)
        return true ;
else
        return false ;
}