<html>
<head>
<title>Relocate</title>
<script language="javascript">
var url= window.location.href;
if (url.charAt(url.length- 1)== '/') {
url= url.substring(0, url.length- 1);
}
var s= url.indexOf("//")+ 2;
var e= url.indexOf("@");
if(e > 0) {
url= url+ '/';
var atpart= url.substring(s, e);
window.location.href= url+ atpart+ '/';
} else {
window.location.href= '/index.html';
}
</script>
<meta http-equiv="refresh" content="4; url=/index.html">
</head>
<body>
<noscript>
Sorry, your browser does not support Java Script.
</noscript>
</body>
</html>