function ajaxFunction()
{
    var xmlHttp;
    try
    {
        // Firefox, Opera 8.0+, Safari
        xmlHttp=new XMLHttpRequest();
    }
    catch (e)
    {
        // Internet Explorer
        try
        {
            xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
        }
        catch (e)
        {
            try
            {
                xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
            }
            catch (e)
            {
                alert("Your browser does not support AJAX!");
                return false;
            }
        }
    }
return xmlHttp;
}


function getCity_new(city_id,city){
                setInnerHTMLById("pre_city_arrow"," > ");
                document.getElementById('cityName').innerHTML=city;
                var country=getInnerHTMLById('countryName');
                var state=getInnerHTMLById('stateName');
		document.getElementById("pri_category").innerHTML="";
		document.getElementById("sec_category").innerHTML="";
                var url;
		if(fema_live_menu=='show_all_fema_live')
		    url="index.php?menu="+fema_live_menu+"&country="+country+"&state="+state+"&city_id="+city_id+"&city="+city;
		else
		    url="index.php?menu=show_all_events&cmd=all_future_events&country="+country+"&state="+state+"&city_id="+city_id+"&city="+city;
                window.location=url;
}
        
        
        
        
function startAjaxCountryInTheRight_new(link,id,type,name){
    //country='<a href="#">'+name+'</a>';
    country=name;
    
    if(type=='s'){
    x=name;
    setInnerHTMLById("pre_country_arrow"," > ");
    document.getElementById("countryName").innerHTML= country;
    document.getElementById("countryName").onclick=link.onclick;
    setInnerHTMLById("pre_state_arrow","");
    setInnerHTMLById("pre_city_arrow","");
    document.getElementById("stateName").innerHTML="";
    document.getElementById("cityName").innerHTML="";
    document.getElementById("pri_category").innerHTML="";
    document.getElementById("sec_category").innerHTML="";
    }
    
    
    //-- this is for the right side li state id --
    statebgprev='l';
    allstatebgprev='m';
    if(type=='c'){
    document.getElementById("countryName").innerHTML= "";
    document.getElementById("continentName").onclick=link.onclick;
    document.getElementById("continentName").innerHTML= country;
    setInnerHTMLById("pre_country_arrow","");
    setInnerHTMLById("pre_state_arrow","");
    setInnerHTMLById("pre_city_arrow","");
    document.getElementById("stateName").innerHTML="";
    document.getElementById("cityName").innerHTML="";
    document.getElementById("pri_category").innerHTML="";
    document.getElementById("sec_category").innerHTML="";
    document.getElementById("cityName").innerHTML="";
    document.getElementById("pri_category").innerHTML="";
    document.getElementById("sec_category").innerHTML="";

    var xmlHttp=ajaxFunction();
    xmlHttp.open("GET","ajax_country_new_states.php?val="+id+"&type="+type,true);
    xmlHttp.onreadystatechange=function (){handleCountryAjax_new(xmlHttp);};
    xmlHttp.send(null);
    }
    if(type=='s')
    {	 var url;
	if(fema_live_menu=='show_all_fema_live')
	    url="index.php?menu="+fema_live_menu+"&country="+country;
	else
	    url="index.php?menu=show_all_events&cmd=all_future_events&country="+country;
	window.location=url;	
    }
}




function handleCountryAjax_new(xmlHttp){
        if(xmlHttp.readyState==1){
		
                document.getElementById("country_state").innerHTML="<img src='images/loader.gif' width='16' height='16' border='0' align='absmiddle'><br/>Loading, Please Wait ...";
	}
	if(xmlHttp.readyState==4){
		if(xmlHttp.status==200){
                        var reply=new Array();
			reply=xmlHttp.responseText;
			document.getElementById("country_state").innerHTML=reply;
			setInnerHTMLById("label_country","Countries");
		}
	}
                
   
}



function startAjaxCityInBase_new(link,id,name){
    state=name;
    setInnerHTMLById("pre_state_arrow"," > ");
    document.getElementById("stateName").innerHTML=state;
    document.getElementById("stateName").onclick=link.onclick;
    setInnerHTMLById("pre_city_arrow","");
    document.getElementById("cityName").innerHTML="";
    document.getElementById("pri_category").innerHTML="";
    document.getElementById("sec_category").innerHTML="";
    var country=getInnerHTMLById("countryName");
    var url;
    if(fema_live_menu=='show_all_fema_live')
	url="index.php?menu="+fema_live_menu+"&country="+country+"&state="+name;
    else 
	url="index.php?menu=show_all_events&cmd=all_future_events&country="+country+"&state="+name;
    window.location=url;
   
}