function requestDingDongInit(toId) {
	if (isInteger(toId)) {
		boolConfirmation = false;
    if (!boolConfirmation || confirm("Willst Du Deine Nachbarn wirklich aergern?")) {
    		var url = '/res/ajax/requestDingDongInit.php';
    		var params = 'toId=' + toId;
    		var ajax = new Ajax.Request(
    						url,
    						{method: 'post', parameters: params, onFailure: function(transport) {reportError(transport);}, onSuccess : function(transport) { reportSuccess(transport);}});
    }
  }
}

function removeDingDong(fromId) {
	if (isInteger(fromId)) {
		boolConfirmation = false;
    if (!boolConfirmation || confirm("Really remove this ding dong?")) {
    		var url = '/res/removeDingDong.php';
    		var params = 'fromId=' + fromId;
    		var ajax = new Ajax.Request(
    						url,
    						{method: 'post', parameters: params, onFailure: function(transport) {reportNone(transport);}, onSuccess : function(transport) { reportNone(transport);}});
    }
  }
}
