// JavaScript Document

<!--
function getTheStores(form)
{
	var theZip = form.zip.value;
	//var theRadius = form.radius.options[form.radius.selectedIndex].value;

	my_window= window.open("http://www.usvision.com/locator/storeLocations.asp?radius=100&zip="+theZip, "mywindow1","resizable=1,scrollbars=1,status=1,width=350,height=600");

return false;


}


function countAndFocus(form)
{

	var zipLength = form.zip.value.length;

	if (zipLength > 4) {
		form.find.focus();}

}

function changeAndFocus(form)
{

	countAndFocus(form);

}


//-->