  var ixFontColor = '#000000'; 	// Font color
		    var ixFontFamily = 'arial'; 	// Font family
		    var ixFontSize = 10; 		// Font size

		    var ixID = 'ixID' + Math.round(Math.random() * 1000), src = '';
		    if (V4) {
		        if (V5 || IE) {
		            document.writeln('<style type=\'text/css\'>');
		            document.writeln('#' + ixID + ' {position: relative;}');
		            document.writeln('.ixTimeClass {font-family: ' + ixFontFamily + '; font-size: ' + ixFontSize + 'pt; color: ' + ixFontColor + ';}');
		            document.writeln('</style>');
		        }
		        else {
		            var pfx = '';
		            if (this == window) pfx = 'document.';
		            eval(pfx + 'ids.' + ixID + '.position=\'relative\'');
		            eval(pfx + 'classes.ixTimeClass.all.fontFamily=\'' + ixFontFamily + '\';');
		            eval(pfx + 'classes.ixTimeClass.all.fontSize=\'' + ixFontSize + 'pt\';');
		            eval(pfx + 'classes.ixTimeClass.all.color=\'' + ixFontColor + '\';');
		            if (this != window) {
		                src = 'document.layers.' + this.id;
		                var p = parentLayer;
		                while (p != window) {
		                    src = 'document.layers.' + p.id + '.' + src;
		                    p = p.parentLayer;
		                }
		                src = 'window.' + src;
		            }
		            if (src.length > 0) src += '.';
		        }
		    }
		    var isV4 = V4;
		    if (isV4 && NS && !V5) isV4 = (src.length > 0);
		    document.write('<div id=\'' + ixID + '\'>');
		    document.write('<span class=\'ixTimeClass\'>');
		    var dd = new Date();
		    var hh = dd.getHours(); if (hh < 10) hh = '0' + hh;
		    var mm = dd.getMinutes(); if (mm < 10) mm = '0' + mm;
		    var ss = dd.getSeconds(); if (ss < 10) ss = '0' + ss;
		    document.write(hh + ':' + mm);
		    if (isV4) document.write(':' + ss);
		    document.write('</span>');
		    if (isV4) {
		        var tmr = '{ var dd = new Date();'
		        tmr += 'var hh=dd.getHours(); if(hh<10) hh=\'0\'+hh;';
		        tmr += 'var mm=dd.getMinutes(); if(mm<10) mm=\'0\'+mm;';
		        tmr += 'var tmr=dd.getSeconds(); if(tmr<10) tmr=\'0\'+tmr;';
		        tmr += 'var htmlStr = \'<span class=\"ixTimeClass\">\';';
		        tmr += 'htmlStr+=hh+\':\'+mm+\':\'+tmr;';
		        tmr += 'htmlStr+=\'</span>\';';
		        if (NS && V5) {
		            tmr += ' var elm=document.getElementById(\'' + ixID + '\');';
		            tmr += ' var txt=elm.firstChild.firstChild;';
		            tmr += ' txt.replaceData(0,txt.data.length,hh+\':\'+mm+\':\'+tmr);';
		        }
		        else {
		            if (IE) {
		                tmr += ' document.all[\'' + ixID + '\'].innerHTML=htmlStr;';
		            }
		            else {
		                tmr += ' var ixD=' + src + 'document.layers[\'' + ixID + '\'].document;';
		                tmr += ' ixD.open(\'text/html\');';
		                tmr += ' ixD.write(htmlStr);';
		                tmr += ' ixD.close();';
		            }
		        }
		        tmr += '}';
		        setInterval(tmr, 500);
		    }
		    document.writeln('</div>')
