		function checkImage() {
			var objDiv		= document.getElementById('LiveChatLink');
			var imgObject	= document.images['psVSBXimage'];

			if (imgObject) {
				strPath = imgObject.src.split('/');
				if (strPath[strPath.length - 1].substr(0,6) == 'online') {
					imgObject.src		= '/en/images/homepage/online-546466487.gif';
					objDiv.innerHTML	= '<a href="/en/latest.asp?chse_id=118">What is Live Chat? &gt;</a>';
				}
				if (strPath[strPath.length - 1].substr(0,7) == 'offline') {
					imgObject.src		= '/en/images/homepage/offline-546466487.gif';
					objDiv.innerHTML	= '';
				}
				window.clearInterval(gobjLiveChatInterval);
			}
		}