I have done this before but now I'm using the same technique on a new website I'm making but it doesn't work anymore. I went to the other website I've done before and the javascript button still works there. So it could be that I am doing something wrong with this code, but everything looks perfect! When I click the button Submit Globe which should call the function SubmitGlobe() and pops out a message box but it doesn't. This structure again works on my other website.
<html>
<head>
<link rel="icon" type="image/png" href="/Favicon.png">
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Test</title>
</head>
<body style="color: rgb(0, 0, 0); background-color: rgb(251, 255, 221);" alink="#000099" link="#000099" vlink="#990099">
<div align="Center">
</div>
<br>
<input onclick="SubmitGlobe()" type="button" value="Submit Globe">
<script type="text/javascript">
Function SubmitGlobe()
{
alert("I am an alert box!")
}
</script>
</body>
</html>