function showPhone(listingid) { try { xmlhttp = new XMLHttpRequest(); } catch (exc) { try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (ex) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { xmlhttp = false; } } } if (xmlhttp) { xmlhttp.open("GET", './countphoneclick.php?listing_id='+listingid, true); xmlhttp.send(null); } document.getElementById("phoneLink"+listingid).className = "controlPhoneHide"; document.getElementById("phoneNumber"+listingid).className = "controlPhoneShow"; } function showFax(listingid) { try { xmlhttp = new XMLHttpRequest(); } catch (exc) { try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (ex) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { xmlhttp = false; } } } if (xmlhttp) { xmlhttp.open("GET", './countfaxclick.php?listing_id='+listingid, true); xmlhttp.send(null); } document.getElementById("faxLink"+listingid).className = "controlFaxHide"; document.getElementById("faxNumber"+listingid).className = "controlFaxShow"; }