на элемент указывает this, который доступен из обработчика события
пример ниже, демнстрирует как одна функция onmouseover работает сразу с тремя смайликами
<!DOCTYPE html>
<html>
<head>
<script>
function bigImg(x)
{
x.style.height="64px";
x.style.width="64px";
}
function normalImg(x)
{
x.style.height="32px";
x.style.width="32px";
}
</script>
</head>
<body>
<img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="http://www.w3schools.com/jsref/smiley.gif" alt="Smiley" width="32" height="32">
<img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="http://www.w3schools.com/jsref/smiley.gif" alt="Smiley" width="32" height="32">
<img onmouseover="bigImg(this)" onmouseout="normalImg(this)" border="0" src="http://www.w3schools.com/jsref/smiley.gif" alt="Smiley" width="32" height="32">
</body>
</html>