// JavaScript Document
document.write("<script type='text/javascript' src='http://www.1lawyersource.com/Subsys/Js.js'></script>");
    var textInputID = "typo"; //ID of text input
    var doAutoComplete = true; //the first value will be used for that
    var resultPattern = "%value%"; //use %index% and %value% placeholders to address result array items of front-end

document.write("<script type='text/javascript' src='http://www.1lawyersource.com/suggester.js'></script>");
document.write('<LINK REL="StyleSheet" HREF="http://www.1lawyersource.com/suggester.css" type="text/css">');

//========================= Searching through ajax =======================================================
function mysearchfun() {
		
				var str=document.getElementById('typo').value;
					if(str=="Enter a search term, city, state, or zip code" || str=="")
						{
							alert("Please enter search term(s)");
							document.getElementById('typo').focus();
							return false;
						}
			//	alert(str);
				new Ajax.Request("http://www.1lawyersource.com/ajax_state.php", 
					{ 
					method: 'post', 
					postBody: 'q='+ str,					
					onComplete: showResponse_state 
					});
				}
function showResponse_state(req){
	
							document.location='http://www.1lawyersource.com/'+req.responseText+'/';

}
//=======================================================================================================
