自动选择访问地址

<html>
<head>
<Script Langage=Javascript>
i=1
var autourl=new Array()
autourl[1]="#" //修改为网通访问地址
autourl[2]="#" //修改为电信访问地址
function auto(url)
{
if(i)
{
i=0;
top.location=url
}}
function run()
{
for(var i=1;
i<autourl.length;i++)
document.write("<img src="+autourl[i]+" width=1 height=1 onerror=auto('"+autourl[i]+"')>")
}
run()
</script>
</body>
</html>