<html>
<head runat="server">
<title>Outlook Web Access</title>
<script language="javascript" type="text/javascript">
function redirect()
{
var URL;
var Protocol;
var Path;
// this will be whatever is in the browser. If you need to change this then comment out relevant line below
// Protocol = window.location.protocol + "//"
// Protocol = "http://"
Protocol = "https://"
Path = window.location.hostname + window.location.pathname + "owa"
window.location.href = Protocol + Path
}
</script>
</head>
<body onload="redirect()">
</body>
</html>
|