function showpresence(presence) { var innerFrame = document.getElementById('innerFrame'); var statusIcon = document.createElement('img'); statusIcon.style.border = 'none'; if(presence.status === "Offline"){ statusIcon.src = "/images/offline.gif"; statusIcon.width = "150"; statusIcon.height = "120"; } else { statusIcon.src = "/images/online.gif"; } statusIcon.width = "150"; statusIcon.height = "120"; statusIcon.alt = presence.statusText; statusIcon.title = presence.statusText; var displayName = document.createElement('span'); displayName.style.fontFamily = 'Tahoma, Verdana, sans-serif'; displayName.style.fontSize = '9pt'; displayName.title = presence.displayName; var statusText = document.createElement('span'); statusText.style.fontFamily = 'Tahoma, Verdana, sans-serif'; statusText.style.fontSize = '9pt'; statusText.title = presence.statusText; var br = document.createElement('br'); innerFrame.appendChild(statusIcon); }