﻿function InitStatistics() {
    var r = "";
    if (document.referrer)
        r = document.referrer.toString();
    else if (window.opener && window.opener.location)
        r = window.opener.location.toString();  
    if (r != null && r != "")
        r = encodeURIComponent(r);
    var l = location.href;
    if (l != null && l != "")
        l = encodeURIComponent(l);
    var sUrl = "/Satistics/Init.aspx?r=" + r + "&l=" + l;
   document.write("<iframe id='iStatisticsInit' src='" + sUrl + "' width='0px' height='0px'></iframe>");
     //document.write("<img src='" + sUrl + "' width='1' height='1'/>    ");
}
function LoginStatistics(UserID) {

    //UserID=encodeURIComponent(UserID);
    var sUrl = "http://www.emay.cn/Satistics/Login.aspx?u=" + UserID;
    document.write("<iframe id='iStatisticsLogin' src='" + sUrl + "' width='0px' height='0px'></iframe>");

}
