|
<html><head>
<title>AutoRedirect</title>
<base target="_self">
</base></head>
<body onload="go()">
<script LANGUAGE="JavaScript">
function go(){
var url ="http://www.yourdomain.com"
var target="_self"
window.open(url,target)
}
</script>
</body>
</hml>
how about if you use this script, maybe will work
|