// JavaScript Document	function setCaption(mText) {		if (!document.getElementById('mCaption').hasChildNodes()  ) {			document.getElementById('mCaption').appendChild(document.createTextNode('.'));		}	document.getElementById('mCaption').firstChild.nodeValue = mText;	}
