﻿// JavaScript Document
function ajaxl(){
    $("#login_index").html("<div class='loading1'>正在加载...</div>");
	$.ajax({
		type: "GET",
	url: "isloginindex.aspx",
		data: "u="+Math.random(),
	success: function(msg){
		ajaxlogin(msg);
	}
	});
    }
    function ajaxlogin(msg){
	$("#login_index").html(msg);
}

function qqonline() {
    $(".index_qq").html("正在加载客服信息...");
    $.ajax({
        type: "GET",
        url: "qqonline.aspx",
        data: "u=" + Math.random(),
        success: function(msg) {
            ajaxqq(msg);
        }
    });
}
function ajaxqq(msg) {
    $(".index_qq").html(msg);
}
