function ajaxSubmitPropertyDisplayEntity_3( buttonObj ){
if( $('#editProp_17').length ){ 
	$('#editProp_17').ajaxForm({ 
	beforeSubmit: validatePropertyDisplayForms,
	success:propertyDisplayRedirect_3,
	url: 'search/ajax2/savePropertyDiplayEntityDetails/17/1',
	async: false  
	}).submit();

 }else{
propertyDisplayRedirect_3('', '');
} 

 return false;}

				function propertyDisplayRedirect_3(responseText, statusText){
					//alert(responseText);return;
					
					$.ajax({
						type: "GET",
						async: false,
						url: "search/fastAjax/getSessionRedirectLocation",
						success: function(msg){
							if( msg == null || msg == "" ){ // Get this forms set Message
								$.ajax({
									type: "GET",
									async: false,
									url: "search/fastAjax/getPropertyDisplayFormButttonRedirectURL/0?url=",
									success: function(propertyRedirectLoc){
										if( propertyRedirectLoc == null || propertyRedirectLoc == "" ){
											window.location.href =  "";
										}else{
											window.location.href =  propertyRedirectLoc + "";
										}
									}
								});
							}else{
								window.location.href =  msg + "";
							}
						}
					});
				}