function doDelete(arg)
{
var ok=confirm('Are you sure you want to delete this censor word?');
	if (ok==true)
	{
		document.location.href=arg;
		return;
	} else {
		alert('Canceled');
		return;
	}
}

function doEdit(arg)
{
		document.location.href=arg;
		return;
}

