	
	
	function openStoreLocator (p_searchAddress,p_searchCity,p_searchStateID,p_searchZip,p_searchRadius) {

		if(p_searchAddress==null) {
			p_searchAddress="" ;
		}
		if(p_searchCity==null) {
			p_searchCity="" ;
		}
		if(p_searchStateID==null) {
			p_searchStateID="" ;
		}
		if(p_searchZip==null) {
			p_searchZip="" ;
		}
		if(p_searchRadius==null) {
			p_searchRadius="10" ;
		}

		var browser = "" ;
		var width = 800 ;
		var height = 600 ;
		if (navigator.platform != 'MacPPC') {
			if (navigator.appName == "Microsoft Internet Explorer") { 
				width=775;
				height=550; 
			}
			else if (parseInt(navigator.appVersion) > 4){ 
				width=775;
				height=550; 
			}
			else { 
				width=775;
				height=550; 	
			}
		} else {
			if (navigator.appName == "Microsoft Internet Explorer") { 
				width=775;
				height=550; 
			}
			else if (parseInt(navigator.appVersion) > 4){ 
				width=775;
				height=550; 
			}
	 		else { 
				width=775;
				height=550; 
			}
		}

		var storelocator_url="http://nikegridiron-locator.custhelp.com/cgi-bin/nikegridiron_locator.cfg"+
	                           "/php/loc/enduser/result.php?"+
					   "PARM_LOCATOR_SESSION=owx_qbgh&p_searchAddress="+p_searchAddress+"&p_searchCity="+p_searchCity+
					   "&p_searchStateID="+p_searchStateID+"&p_searchZip="+p_searchZip+"&p_searchRadius="+p_searchRadius ;

		window.open(storelocator_url,"rnl_storelocator_window",'resizable=yes,scrollbars=yes,width='+width+',height='+height);    

		

	}
