// Auto tab script

 function swapBlock()
 {
 currentBlock=document.getElementById('bannerswap1').style.display;
 currentBlock2=document.getElementById('bannerswap2').style.display;
 currentBlock3=document.getElementById('bannerswap3').style.display;
  
 	if(currentBlock=="block")
	{
		swapbanner2()
		document.getElementById('scrollno1').className="tabInactive";
		document.getElementById('scrollno2').className="tabActive";
		document.getElementById('scrollno3').className="tabInactive";
		
		
	}
	else if ((currentBlock=="block")||(currentBlock2=="block"))
	{
		swapbanner3()
		document.getElementById('scrollno1').className="tabInactive";
		document.getElementById('scrollno2').className="tabInactive";
		document.getElementById('scrollno3').className="tabActive";
		
	}
	else if ((currentBlock2=="block")||(currentBlock3=="block"))
	{
		swapbanner1()
		document.getElementById('scrollno1').className="tabActive";
		document.getElementById('scrollno2').className="tabInactive";
		document.getElementById('scrollno3').className="tabInactive";
		
	}
	

 }

 function swapbanner1(arg)
 {
	 if(arg == 'click')
	 {

		document.getElementById('scrollno1').className="tabActive";
		document.getElementById('scrollno2').className="tabInactive";
		document.getElementById('scrollno3').className="tabInactive";

	 }
	 document.getElementById('bannerswap1').style.display="block";
	 document.getElementById('bannerswap2').style.display="none";
	 document.getElementById('bannerswap3').style.display="none";
 }
 function swapbanner2(arg)
 {
	 if(arg == 'click')
	 {
		
		document.getElementById('scrollno1').className="tabInactive";
		document.getElementById('scrollno2').className="tabActive";
		document.getElementById('scrollno3').className="tabInactive";
	 }
	 document.getElementById('bannerswap1').style.display="none";
	 document.getElementById('bannerswap2').style.display="block";
	 document.getElementById('bannerswap3').style.display="none";

 }
 function swapbanner3(arg)
 {
	 if(arg == 'click')
	 {
		
		document.getElementById('scrollno1').className="tabInactive";
		document.getElementById('scrollno2').className="tabInactive";
		document.getElementById('scrollno3').className="tabActive";
	 }
	 document.getElementById('bannerswap1').style.display="none";
	 document.getElementById('bannerswap2').style.display="none";
	 document.getElementById('bannerswap3').style.display="block";
 
 }

function testmovie_DoFSCommand(command, args) { 
	if (command == "startRotter") { //On Stop
		swapBlock();
	}
	
}


// Tell Us popup script

function popUp(URL) {

day = new Date();

id = day.getTime();

eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=yes,status=yes,location=0,statusbar=0,menubar=0,resizable=yes,width=500,height=420,left = 262,top = 134');");

}

