// 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.jcpenneyoptical.com/_locator/storeLocations.asp?radius="+theRadius+"&zip="+theZip, "mywindow1","resizable=1,scrollbars=1,status=1,width=350,height=600");

}


function buttonFocus (form)
{
	if(form.zip.value.length>4)
	{
		form.find.focus();
	};
}



//-->