function contactUs(parent){
	var xmlHttp = GetXmlHttpObject();
	if (xmlHttp==null) {
		 alert ("Browser does not support HTTP Request");
		 return
	}
		
	var url;
	url = "contactUs.php";
//	url=url+"?id="+id;
//	url=url+"&sid="+Math.random();

	xmlHttp.onreadystatechange = function(){
		if(xmlHttp.readyState == 1 || xmlHttp.readyState == "complete"){
			parent.innerHTML = "<center><img alt='loading' src='Images/load.gif'></center>";
		}
		
		if(xmlHttp.readyState == 2 || xmlHttp.readyState == "complete"){
			parent.innerHTML = "<center><img alt='loading' src='Images/load.gif'></center>";
		}
		
		if(xmlHttp.readyState == 2 || xmlHttp.readyState == "complete"){
			parent.innerHTML = "<center><img alt='loading' src='Images/load.gif'></center>";
		}
		
		if (xmlHttp.readyState == 4 || xmlHttp.readyState == "complete")
		{
			parent.innerHTML = "";
			parent.innerHTML = xmlHttp.responseText;
		}
	}
	
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}

/************************************************************************************************************
 * 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                                                                                         *
 ***********************************************************************************************************/