if (location.search.indexOf("country")<0) {
	if (visitordata.country) {
	    
		if (visitordata.country!="United States"){
		    if(document.location.href.indexOf('rw/country/') != -1){
				;//protecting against duplicate calls
			}else{
			
				document.location.href='rw/country/'+visitordata.country;
			}	
	
	
		}
	}
}


