function GetXmlHttpObject() {
	var xml=null;
	try {
	    // Firefox, Opera 8.0+, Safari
	    xml=new XMLHttpRequest();
	} catch (e) {

	    // Internet Explorer
	    try {
	      xml=new ActiveXObject("Msxml2.XMLHTTP");
	    } catch (e) {
	      xml=new ActiveXObject("Microsoft.XMLHTTP");
	    }
	}
	return xml;
}

/************************************************************************************************************
 * Vahan Tadevosyan																							*
 *  /\    /\                                                                                                *
 * <..>||<..>                                                                                               *
 *  \/ || \/                                                                                                *
 *    ____                                                                                                  *
 *   |_VT_|                                                                                                 *
 *                                                                                                          *
 * Vahan Tadevosyan                                                                                         *
 *                                                                                                          *
 * Copyright Vahan Tadevosyan For www.buildersunion.am                                                               *
 * All Rights reserved                                                                                      *
 * Vahan Tadevosyan 2008 - 2009 year                                                                        *
 * All or some copy of this source or publish block by order                                                * 
 *                                                                                                          *
 * Vahan Tadevosyan                                                                                         *
 ***********************************************************************************************************/