﻿// JScript 文件
 function writeCookie(name, value, hours)   
    {   
        var expire = "";   
        if(hours != null)   
        {   
            expire = new Date("12/31/4000");//(new Date()).getTime() + hours*60000/*3600000*/);   
            //expire.setTime(expire.getTime() + hours*60000*3600000);
            expire = "; expires=" + expire.toGMTString();   
        }   
        document.cookie = name + "=" + escape(value) + expire+";path=/;domain=home.163.com";
    }   
  
function hchangeto(chengshi)
{
   writeCookie("163homeChengShi-2008",chengshi,120);
   
   document.location = "http://"+chengshi+".home.163.com/";
}

function DelCoke()
{
writeCookie("163homeChengShi-2008",'',-1);
document.location = "http://home.163.com/";
}