﻿// JScript 文件

function addcollection(url)
    {
        var rnd=Math.random(10000);
        
        url=url+"&rnd="+rnd;
        var cbo=new CallBackObject();
        cbo.OnComplete=cbo_Complete;
        cbo.OnError=cbo_Error;
        cbo.DoCallBack(url);
        
        
        
    }
    function cbo_Complete(responseText,responseXml)
    {
//        alert(responseText);
        alert(responseText);
    }
    function cbo_Error(status,statusText)
    {
        alert("未知错误");
    }
