//*********
function scrollObjects(){
	for (i =nstart; i< nstart +nLines; i++){
		if (i <myTxt.length){
			strTemp =strTemp +myTxt[i]
		};
	}; 
	document.frmSpeech.txtSpeech.value =strTemp;
	strTemp ="";
	swopImage(myImage1[nstart] , "Image1");
	if (nstart >=myTxt.length){nstart =0};
	else {nstart +=1};
	timer =setTimeout("scrollObjects()",pause);	
}		//fn scroll speech

//*********
function swopImage(ImgName, pImageName)
{
	document[pImageName].src =ImgName;
//	alert (ImgName);
}		//fn swop Image
//*********

