function checkANWBLid(obj, arCheck) {
	
	if (CheckForm(obj) == false) {
		return false;
	} else {
	}
	
	var arPost	= {};
	for (i in arCheck) {
		arPost[ i ]	= $('#' + arCheck[i]).val();
	}
	
	postit	= obj;
	
	jQuery.post("./checkANWBLid.php", arPost,
	function (data) {
		
		if(typeof handleKWSResponse == 'function') {
			handleKWSResponse(data);
		}
		
		return data;
	});
	
	return false;
	
}
