/** * Function to Open Google Map */ function openGmap(map_id, map_name) { var xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { if (xmlhttp.responseText == "Done") { window.open("../gmap/map.jsp?map_id="+map_id+"&map_name="+map_name,"_blank"); } } }; xmlhttp.open("GET", "../map.getCoordinates?map_id="+map_id, true); xmlhttp.send(); } function showModal() { //alert("here"); //console.log("here"); $('body').loadingModal('show'); $('body').loadingModal({ text: 'Getting the page ready for you. Please wait...', opacity: '0.5', animation: 'wave' }); } function hideModal(){ $('body').loadingModal('hide'); }