<html>
<head>
<title> A Simple Applet </title>
</head>
<body>
<H2>My Third Applet (enter name after url?)</H2>
<hr/>
<script>
query_string = location.search; // get query_string
msg = query_string.substring(1); // strip off the leading '?'
document.write(" <applet code='HelloApplet4.class' height=200 width=300> ");
document.write(" <param name='message' value='" + msg + "'> ");
document.write(" </applet> ");
</script>
<hr/>
</body>
</html>