Übergib doch mal das Objekt das die Funktion aufruft an diese Funktion, und gebe diese aus, schon weißt du welches Obejkt die Funktion wann aufruft.
Bsp:
<input type="button" ... onclick="nurso(12, 13, 14, this);" />
function nurso(a, b, c, NEU_PARAM) {
...
alert("Obj: "+ NEU_PARAM +"\nObj.id: "+ NEU_PARAM.id);
...
}