|
I need to be able to hide the menubar and location box from within a browser window.
I am using the following Perl code:
print qq|<html>
<head>
<META HTTP-EQUIV="Refresh" CONTENT="0;URL=./TestForms/testModule$t.htm$user_name" target=_blank>
</head>
<body>
<a href="./TestForms/testModule$t.htm$user_name" target=_blank>
<h3>IF NOT OPENED IN 5 SECONDS<br>
CLICK TO OPEN THE TEST</h3></a>
</body>
</html>|;
}
This opens a window and puts one of nine testModule files in it and also passes the users name to it. I also need it to hide all of the controls on the browser but I can't figure out how to do it.
Thank You for your time
Rich
|