Hola
lkas. Bienvenido al foro.
Sin ver el código, es difícil saber qué es lo que falla. Prueba este sencillo ejemplo, a ver si te orienta:
Código:
<html>
<head>
</head>
<script type="text/javascript">
function funcion1() {
funcion2();
}
function funcion2() {
alert('Hola');
}
</script>
<body>
<input type="button" onclick = "funcion1()" />
</body>
</html>
Saludos,