function getstores() {

document.getElementById('storelist').innerHTML = "<p style='text-align:center'>Please wait while we find stores that are nearby you. <img src='images/radar.gif' /></p>";

var xmlhttp=false;
try {
xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
} catch (e) {
try {
xmlhttp = new
ActiveXObject('Microsoft.XMLHTTP');
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
var file = 'ajax/zipcodelookup.php?';


if (document.pledgeform.storezip.value != "") {
file += "zip=" + document.pledgeform.storezip.value;
}

xmlhttp.open('GET', file, true);
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4) {
var content = xmlhttp.responseText;
if( content ){
document.getElementById('storelist').innerHTML = content;
}
}
}
xmlhttp.send(null)
return;
;
}



function getstorelist() {

document.getElementById('storelist').innerHTML = "<p style='text-align:center'>Please wait while we find stores that are nearby you. <img src='images/radar.gif' /></p>";

var xmlhttp=false;
try {
xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
} catch (e) {
try {
xmlhttp = new
ActiveXObject('Microsoft.XMLHTTP');
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
var file = 'ajax/getlocations.php?';


if (document.storelookup.storezip.value != "") {
file += "zip=" + document.storelookup.storezip.value;
}

xmlhttp.open('GET', file, true);
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4) {
var content = xmlhttp.responseText;
if( content ){
document.getElementById('storelist').innerHTML = content;
}
}
}
xmlhttp.send(null)
return;
;
}