function confirmSuppression()



{



var confirmation = false ;



	



confirmation = confirm( "Are you sure to delete it ?  " );







	if( confirmation == true )



	{



	//alert ("conf =" + confirmation);



	return true;



	}



	else



	{



	//alert ("conf =" + confirmation);



	}



return confirmation;







}




