/* 
function initxmlhttp()
{
	var xmlhttp ;
	if ( !xmlhttp && typeof XMLHttpRequest!='undefined' )
	{
		try
		{
			xmlhttp = new XMLHttpRequest() ;
		}
		catch (e)
		{
			xmlhttp = false ;
		}
	}
	return xmlhttp ;
} */
function initxmlhttp()
{
		var xmlhttp ;
 	    if (window.XMLHttpRequest) {
                xmlhttp = new XMLHttpRequest();
            //    xmlHttpReq.overrideMimeType('text/xml');
        }
        // IE
        else if (window.ActiveXObject) {
                xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        }
		return xmlhttp ;
}
