function loadXml(dataNew){

        $(dataNew).find("website").each(function() {
			if($(this).attr("country").toLowerCase() == country || $(this).attr("country").toLowerCase() == "all" ){
				$('#onlineWeb').append('<li>'+$(this).find("url").text()+'</li>');
			}
			
		});
		if($('#onlineWeb').html() == ""){
			
			$('#onlineWeb').append('<li>There are no Authorized Online Retail Stores in your area.</li>');
		
		}
}
$(document).ready(function() {
	 
	$.ajax({
    url: "/Auth_counterfeitLookUp.xml",
    dataType: "xml",
    success: function(data){dataNew = data;loadXml(dataNew);}});
    
 });
