I figured this out a while ago, but all of my files have been deleted and the only backup I have was from a couple weeks ago... anyways, I've followed the book and a few websites on event handling, but I don't know how to remove the inline Javascript. This is what I've already looked at:
http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_win_close
button.html File:
<html>
<head>
<script src="window.js"></script>
</head>
<body>
<button type="button" id="Start Process">Start Process</button>
</body>
</html>
window.js File:
function myFunction() {
window.open("http://www.w3schools.com");
}
var Process = document.getElementById('Start Process');
Process.onclick = myFunction;