$(document).ready(function() { 		

	$("#username").focus();

	$("#button").bind("click",function(e){
		UpdateList();										  
	});


	$("#username").bind("keypress",function(e){
											   
		if(e.keyCode==13) {
			UpdateList();	
			return false;
		}	
		
	});

});


function UpdateList() {

	var username  	=($("#username").val() 	== null)?"":$("#username").val();
	var firstname  	=($("#firstname").val() == null)?"":$("#firstname").val();
	var lastname  	=($("#lastname").val() 	== null)?"":$("#lastname").val();
	var wordlist  	=($("#wordlist").val() 	== null)?"":$("#wordlist").val();	
	var location  	=($("#location").val() 	== null)?"":$("#location").val();
	var rating  	=($("#rating").val() 	== null)?"":$("#rating").val();	

	var url ="ajax_advance_result.php?username="+username+"&firstname="+firstname+"&lastname="+lastname+"&wordlist="+wordlist+"&location="+location+"&rating="+rating;
	UpdateArea(url,$("#listcontainer"),"ajax-loading",220);
}