var id=1,t=1;

function nextAd(n)
	{
	if (t==1)
		{
		if (n!=1) t=2;
		else 
			{
			id++;
			if(id>6) id=1;
			document.isrc.src='http://www.metaltorg.ru/images/cources/lme'+id+'.png';
			document.iname.src='/images/cources/'+id+'.gif';
			setTimeout('nextAd('+n+');', 5000);
			}
		}
	}

function ChooseLen()
	{
	window.document.send.count.value=window.document.send.message.value.length;
	}

function showTime()
	{
	dayTwo=new Date(); hrNow=dayTwo.getHours(); mnNow=dayTwo.getMinutes(); scNow=dayTwo.getSeconds(); miNow=dayTwo.getTime();
	dayNow=dayTwo.getDate(); monthNow=dayTwo.getMonth()+1; yearNow=dayTwo.getYear();
	if (scNow <= 9) secs="0"+scNow; else secs=scNow;
	if (mnNow <= 9) mins="0"+mnNow; else mins=mnNow;
	if (monthNow <= 9) month="0"+monthNow; else month=monthNow;
	if (yearNow <= 1900) {year=yearNow+1900;dbegin='';dend='';} else {year=yearNow;dbegin='<center>';dend='</center>';}
	if (year < 10) yy="0"+year;
	time=hrNow+":"+mins+":"+secs;
	date=dayNow+"."+month+"."+year;
	str=dbegin+date+'<br>'+time+dend;
	if (document.all) document.all.clock.innerHTML=str;
	if (document.layers)
		{
		document.clock.document.write('<p style="font-size:12px;">'+str+'<\/p>');
		document.clock.document.close();
		}
	setTimeout('showTime()', 1000);
	}

function loadpage()
	{
	setTimeout('showTime()', 1000);
	}

