Redirect Within Body
If you do not have access to the head of a webpage it is useful to know how to do a redirect within the body. Here is an example:
<html>
<head>
<title> test </title>
</head>
<body>
<script language="javascript">
location.replace('http://www.torypages.com');
</script>
</body>
</html>