1<script>2functionformatCustomerId(val,row){3varurl = "customerView.php?id=";4return'<a href="'+url + row.customer_id+'">'+val+'</a>';5}67functionformatContactUrl(val,row){8varurl = "contactView.php?id=";9return'<a href="'+url + row.id+'">'+val+'</a>';10}11</scr...