function confirmaction() 
{
var agree=confirm("This process cannot be undone. Do you want to continue?");
if (agree)
	return true ;
else
	return false ;
}
