|          
把下面代码copy入你html文件的<head>和</head>中即可:
 <script>
 <!--
 var num = 2;
 var mypage = 'http://www.sron.net'; /* 你访问者想进入的链接 */
 var pissoff = ' 请先点击上面的链接 '; /* 访问者不点击广告会出现的内容 */
 allow = Array();
 allow[num] = 2;
 function gotoit(link){
 if (link != num){
 allow[link] = 2;
 } else {
 for (i=1;i<=num;i++){
 if (allow[i] != 2){
 i = num + 1;
 lemmeIn = 0;
 } else {
 lemmeIn = 1;
 }
 }
 if (lemmeIn == 1){
 window.location = mypage;
 } else {
 alert(pissoff);
 }
 }
 }
 -->
 </script>
 
 
 把下面代码copy入你html文件的<body>和</body>中即可:
 <a href="../ezine.htm" target="_blank">先帮忙点击这里</a>/* 你广告商的URL */
 <a href="javascript:gotoit(num)">进入</a>
 <script language="Javascript">
 <!--
 document.write('<a href="http://www.sron.net" target="_top"></a>');/* 你访问者想进入的链接 */
 //-->
 </script>
 |