
var wVal13 = 0;
var lVal13 = 0;
var stopThis1 = 0;


	
function checkActiveX3() {
	
	FillAuto3(); 
	}

function FillAuto3() {
	initPictures3();
	runSlideShow3(1);
	}
	

	
/* download slideshow */

var SlideShowSpeed3 = 4444;
var CrossFadeDuration3 = .09;
var Picture3 = new Array();  

var tss3;
var iss3;
var jss3 = 1;
var pss3 = 1;
var preLoad3 = new Array();

function initPictures3() {
	Picture3[1]  = 'rot/r1.jpg';
	Picture3[2]  = 'rot/r2.jpg';
	Picture3[3]  = 'rot/r3.jpg';
	Picture3[4]  = 'rot/r4.jpg';	
	Picture3[5]  = 'rot/r5.jpg';
	Picture3[6]  = 'rot/r6.jpg';
	Picture3[7]  = 'rot/r7.jpg';
	Picture3[8]  = 'rot/r8.jpg';
	Picture3[9]  = 'rot/r9.jpg';
	Picture3[10]  = 'rot/r10.jpg';



	pss3 = Picture3.length-1;
		
	for (iss3 = 1; iss3 < pss3+1; iss3++){
	preLoad3[iss3] = new Image();
	preLoad3[iss3].src = Picture3[iss3];}
	}	
	
function runSlideShow3(active) {
	if (stopThis1 == 1 ) {
		document.images.PictureBox3.src = preLoad3[1].src;
		//document.images.PictureBox.style.display = "none";
		return;
		}
	else {
		if (document.all) {
			document.images.PictureBox3.style.filter="blendTrans(duration=CrossFadeDuration3)";
			document.images.PictureBox3.filters.blendTrans.Apply();
			}
		document.images.PictureBox3.src = preLoad3[jss3].src;
		if (document.all) document.images.PictureBox3.filters.blendTrans.Play();
		jss3++;
		if (jss3 > (pss3)) jss3=1;
		tss1 = setTimeout('runSlideShow3(1)', SlideShowSpeed3);	
		}
	}	





