form_validate = function() { valid = true; var oForm = document.forms["content_form"]; var business_name = oForm.business_name.value; var address_line_1 = oForm.address_line_1.value; var address_line_2 = oForm.address_line_2.value; var town = oForm.town.value; var telephone = oForm.telephone.value; var mobile = oForm.mobile.value; var email_listing = oForm.email_listing.value; var description = oForm.description.value; var chks = document.getElementsByName('languages[]'); var tlcs = oForm.tlcs.value; var subcategories = oForm.subcategories.value; var user_file = oForm.user_file.value; var name = oForm.name.value; var username = oForm.username.value; var password = oForm.password.value; var confirm_password = oForm.confirm_password.value; var id = oForm.id.value; var email_user = oForm.email_user.value; var alertMsg = "

Errors were found, please correct them and try again

" /*alert(alertMsg);*/ window.scrollTo(0,0); return false; } return valid; } // Confirm delete required function confirm_delete(val) { if (val == 'delete') { if(window.confirm("Are you sure you want to FULLY DELETE this listing?") != true) { document.getElementById('delete_listing').selectedIndex = 0; } else { alert('Click the Submit button to FULLY DELETE this property'); } } }