Created by Eddie Spicer <!-- This script has been in the http://www.javascripts.com Javascript Public Library! -->
<!-- Note that though this material may have been in a public depository, certain author copyright
restrictions may apply. -->
<html>
<head>
<title>
Drop Browser Window
</title>
<script>
function drop(n) {
if(self.moveBy){
self.moveBy (0,-900);
for(i = n; i > 0; i--){
self.moveBy(0,3);
}
for(j = 8; j > 0; j--){
self.moveBy(0,j);
self.moveBy(j,0);
self.moveBy(0,-j);
self.moveBy(-j,0);
}
}
}
</script>
</head>
<body onLoad="drop(300)"> Created by <a href="mailto:eddiespicer@conwaycorp.net">Eddie Spicer</a>
</body>
</html>