Hola
Nateskin
Prueba este ejemplo:
Código PHP:
<html>
<head>
<script type="text/javascript">
function accion1(obj) {
alert('Hola');
obj.onclick = function() {accion2()}
}
function accion2() {
alert('Adios');
}
</script>
</head>
<body>
<input type="button" onclick="accion1(this)" />
</body>
</html>
Saludos,