/*
 * Author: Charles Lauzon
 * Name:   Functions_Maison.js
 * Date:   11 Janvier, 2008
 */
 
/********************************************************************
 * 																	*
 *							   MAISON                               *
 *																	*
 ********************************************************************/
/* AJAX */
var req;
var d = new Date();

//This function is use for AJAX
function Initialize(){
    try{
        req=new ActiveXObject("Msxml2.XMLHTTP");
    }
    catch(e){
        try{
            req=new ActiveXObject("Microsoft.XMLHTTP");
        }
        catch(oc){
            req=null;
        }
    }
    if(!req&&typeof XMLHttpRequest!="undefined"){
        req=new XMLHttpRequest();
    }
}
