function confirmare(mesaj)
{
	var agree=confirm(mesaj);
	if (agree)
		return true ;
	else
		return false ;
}

