function confirmGeneric(x)
{
var agree=confirm("Confirm: " + x);
if (agree)
	return true ;
else
	return false ;
}

