This is a much simpler and modified part of my original code.
Anytime I call an event it doesn't function, I have tried too many times. Any help would be appreciated.
<script type="text/javascript">
function hello ()
{
alert("Hello!!!");
}
</script>
<div id="platform">
<div id="mainOval">
<form id="btns">
<input type="button" value="Timer" id="timerBtn" onclick=hello()/>
<input type="button" value="Countdown" id="ctDownBtn" onclick=hello()/>
</form>
</div>
</div>