for some reason or another, the URL entered wont work. it always goes to a page that says, the page you have requested cannot be found.
<script language="javascript" type="text/javascript">
<!--
window.alert("what do you want to do today, surf the web, or do you want to play a game?"

;
var command=window.prompt("type surf_web, or game_plz in the field below."

;
if (command == "surf_web"

{
var url=window.prompt("what website do you want to go to?","type URL here"

;
window.alert("bye!"

;
window.location = url;
}
else if (command == "game_plz"

{
window.alert("ok, we can play a game!"

;
window.alert("its not a very fun game, but its the thought that counts right? right??"

;
var friend=window.prompt("give me one of your friend's names plz.","type name here"

;
var enemy=window.prompt("now give me a name of one of your enemies(if you have any).","type name here"

;
var gender=window.prompt("Is your enemy a male or a female?","type male or female plz."

;
if (gender == "male"

{
var gender="him";
}
else if (gender == "female"

{
var gender="her";
}
var string="" + friend + " and a monkey ran over to " + enemy + ", and laughed at " + gender;
window.alert(string);
window.alert("that was fun wasn't it! wasn't it?"

;
window.alert("Ok, Since your board of me already, I guess we can just talk later, dat ok? good! ^_^"

;
}
//-->
</script>