﻿/*
//*****************************************************************************
// Ajax.js  ver 0001
// 项目名         ：农工商会员和促销管理信息系统
// 业务名         ：主档管理
// 程序名         ：Ajax脚本
// 程序标识       ：Ajax
//-----------------------------------------------------------------------------
// 改版履歴
//    Ver       |日期           |公司            |编制人        |内容
//-----------------------------------------------------------------------------
//    0001      |2007-09-28     |NEC             |李涛          |新程序编制
//-----------------------------------------------------------------------------
// 功能概要：
//    
// 传入参数：
//   
//    
// 返回值：
//    
//    
//*****************************************************************************
*/


//****************************************
//创建XMLHttpRequest对象
//****************************************
function getXMLHTTPRequest()
{//*
    var xRequest = null ;
    if(window.XMLHttpRequest)
    {//**
        xRequest = new XMLHttpRequest() ;
    }//**
    else if(window.ActiveXObject)
    {//**
        xRequest = new ActiveXObject('Microsoft.XMLHTTP') ;
    }//**
    return xRequest ;
}//*

//****************************************
//发送XMLHttpRequest对象
//****************************************
function sendRequest(url,params,HttpMethod)
{//*
    if(!HttpMethod)
    {
        HttpMethod = 'GET' ;
    }
    var req = getXMLHTTPRequest() ;
    if(req)
    {
//        req.onreadystatechange = onReadyState ;
        req.open(HttpMethod,url,true) ;
        req.setRequestHeader("Count-Type","application/x-www-form-urlencoded") ;
        req.send(params) ;
    }
}//*