// JavaScript Document

<!--
function getTheStores(form)
{
	var theZip = form.zip.value;
	var theRadius = form.radius.options[form.radius.selectedIndex].value;

	my_window= window.open("/_locator/storeLocations.asp?radius="+theRadius+"&zip="+theZip, "mywindow1","resizable=1,scrollbars=1,status=1,width=350,height=600");

}
//-->