document.addEventListener('DOMContentLoaded', function(event) {const markup = `

Hotel Canaan
105A , Court Road, Advocate Gnaniah Complex,Veppamoodu Junction, Nagercoil, Tamil Nadu 629001










`;l = document.createElement('div');l.setAttribute('id', 'contactDiv');l.innerHTML = markup;var siteDiv = document.getElementById('siteConDiv');if(siteDiv != null){siteDiv.innerHTML =markup;}else{document.body.appendChild(l);} });function contactsubmit(){var name = document.getElementById('hobseCName').value;var email = document.getElementById('hobseCEmail').value;var phone = document.getElementById('hobseCPhone').value;var subject = document.getElementById('hobseCSubject').value;var message = document.getElementById('hobseCMessage').value;var domain = document.location.hostname;if(name != '' && email != '' && phone != '' && subject != '' && message != ''){ var xhttp = new XMLHttpRequest();xhttp.open('POST', 'https://www.hobse.com/demo/index.php/general/contactUs', true); xhttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');xhttp.send('clientType=1&hobseId=7113&appId=1&name='+name+'&email='+email+'&phone='+phone+'&subject='+subject+'&message='+message+'&domain='+domain);xhttp.onreadystatechange = function() { if(xhttp.readyState === 4 && xhttp.status === 200) { document.getElementById('hobseCTForm').reset();alert(xhttp.responseText);}}}else{alert('All Fields are Required..!');}}