function sendMailAjax(productId,apartat) { document.getElementById("resMail").style.display="none"; document.getElementById("resMailError").style.display="none"; document.getElementById("sending").style.display="block"; var name=document.getElementById("nom").value; if(typeof(productId) =="undefined") productId=""; if(typeof(apartat) =="undefined") apartat=""; if(name=="Name")name=""; var mail=document.getElementById("email").value; if(mail=="Your Friend's Email")mail=""; var rand=aleat(); var uri="http://www.enjoy-barcelona.com/process/processAjaxComu.php?HOST=enjoy-barcelona.com&action=recommendFriend&name="+name+"&mail="+mail+"&rand="+rand+"&idioma=EN&productId="+productId+"&apartat="+apartat+"&cityId=barcelona"; consultaHttp(uri); } function tractaRecommendFriend(xmldoc) { document.getElementById("sending").style.display="none"; if(xml_unescape(xml_consultaDada(xmldoc.getElementsByTagName("resultat").item(0)))!="OK") { document.getElementById("resMailError").innerHTML=xml_unescape(xml_consultaDada(xmldoc.getElementsByTagName("resultat").item(0))); document.getElementById("resMail").style.display="none"; document.getElementById("resMailError").style.display="block"; return; } var res=xml_unescape(xml_consultaDada(xmldoc.getElementsByTagName("res").item(0))); document.getElementById("resMail").innerHTML=res; document.getElementById("resMail").style.display="block"; document.getElementById("resMailError").style.display="none"; document.getElementById("nom").value=""; document.getElementById("email").value=""; return 1; }