var obj_show = null;
var show_popup = false
var fill_array = false

function xmlhttpGet(strURL) {

	if(obj_show)
		obj_show.innerHTML = '';
	// Mozilla/Safari
    if (window.XMLHttpRequest) {
        client = new XMLHttpRequest();
    }
    // IE
    else if (window.ActiveXObject) {
        client = new ActiveXObject("Microsoft.XMLHTTP");
    }
	//alert(strURL);
    client.open('GET', strURL);
    client.onreadystatechange = callBack;
	
	client.send(null);
}

function callBack(response)
{
	var mReturnStr = '';
	var arr = null;
    try{
		if(obj_show && !show_popup && !fill_array){
			obj_show.innerHTML=client.responseText;
		}
    }catch(ex){
        alert(ex.message);
    }
}

function getStateCountryWise(strCountryISO,objref){
	obj_show = objref;
	show_popup = false;		
	fill_array = false
	xmlhttpGet('./includes/ajax.php?CountryISO='+strCountryISO);
}

function getProductSellerWise(intFu_id,objref){
	obj_show = objref;
	show_popup = false;		
	fill_array = false
	xmlhttpGet('./includes/ajax.php?fu_id='+intFu_id);
}
