﻿function contentarray(len) {
	this.length=len
}

//HelpText = new contentarray(3)
//HelpText[0] = "Your unique ERP solution partner...<br><br>"
//HelpText[1] = "<br>...provides best-fit solution for your corporation...<BR>"
//HelpText[2] = "<br><br>...creates and sustains your competitive advantage."

HelpText = new contentarray(1)
HelpText[0] = "<font color='#103385b'>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspEstablish Brand Name Through Superb Quality<br>&nbsp&nbsp&nbsp&nbsp&nbsp&nbspWin Over Reliability Through Best Service</font>";







ScriptText = new contentarray(3)

var i = -1
function changecontent()
{
	if (i == 0) {
		i = 0
	}
	else {
		i++
	}
	
	fscroller2.filters[0].apply()
	fscroller2.innerHTML = HelpText[i]
	fscroller2.filters[0].play()

	mytimeout = setTimeout("changecontent()",6000)
}
	 





function contentarray2(len) {
	this.length=len
}

HelpText2 = new contentarray(3);
HelpText2[0] = "'TOGO Web-based ERP<br>TOGO Web-based ERP<br>TOGO Web-based ERP'<br><br>- <i>Advance Techical Products</i>"
HelpText2[1] = "'GOOD<br>GOOD<br>GOOD'<br><br>- <i>Best Universal Products</i>"
HelpText2[2] = "'Excellent<br>Excellent<br>Excellent'<br><br>- <i>Eagleton Direct Exports Ltd.</i>"

homeText = new contentarray(6);
homeText[0] = "‘By using the TOGO ERP system, we can save more time as long as saving money for the company.’";
homeText[1] = "‘By using TOGO, we can connect offices around the world easily and share the latest information.’";
homeText[2] = "‘The instant response of TOGO system provides us a great improvement in productivity.’";
homeText[3] = "‘Customer confidence towards our company is significantly strengthened with the TOGO ERP system.’";
homeText[4] = "‘Mistakes were dramatically reduced after using TOGO system and those cost being saved could certainly cover the system cost purchased.’";
homeText[5] = "  'Now, the order processing time was decreased to nearly 30-40%.’";

solutionText = new contentarray(9);
solutionText[0] = "‘By using the TOGO ERP system, we can save more time as long as saving money for the company.’";
solutionText[1] = "‘Mistakes were dramatically reduced after using TOGO system and those cost being saved could certainly cover the system cost purchased.’";
solutionText[2] = "‘From quotation, production, and goods delivery to payment receipt, the system can monitor all information strictly.’";
solutionText[3] = "‘One of the reasons we chose TOGO ERP Solution is that they could fit our need.’ ";
solutionText[4] = "‘Its user-friendly interface lets us work without difficulties.’";
solutionText[5] = "‘TOGO system could save 40% of our time compared with the old system.’";
solutionText[6] = "‘The simplified approval process is the most outstanding feature in the TOGO system, which foresters a paperless environment.’ ";
solutionText[7] = "‘TOGO ERP System facilitates our company’s management and raises clearance.’";
solutionText[8] = "‘TOGO system links up our offices in different locations that result in data accuracy and better communication.’";

featureText = new contentarray(12);
featureText[0] = "‘By using the TOGO ERP system, we can save more time as long as saving money for the company.’";
featureText[1] = "‘By using TOGO, we can connect offices around the world easily and share the latest information.’";
featureText[2] = "‘The instant response of TOGO system provides us a great improvement in productivity.’";
featureText[3] = "‘Customer confidence towards our company is significantly strengthened with the TOGO ERP system.’";
featureText[4] = " ‘Using past sales amount for forecasting, the system results more accurate and reduces inventory.’";
featureText[5] = "‘Mistakes were dramatically reduced after using TOGO system and those cost being saved could certainly cover the system cost purchased.’";
featureText[6] = "‘The speedy and user-friendly system improved our work processes.’";
featureText[7] = "‘40% of our operation time could be saved after using TOGO ERP system.’";
featureText[8] = "‘It is definitely faster and more accurate to obtain sales and inventory figures now. Also, it helps us in effective inventory and financial control.’";
featureText[9] = "‘TOGO is a stable and reliable ERP system. It is a solution for managers to make rational decisions in real time.’";
featureText[10] = " ‘Management can keep track the company operation by Internet Explorer even in oversea.’";
featureText[11] = "‘The system provides us a seamless workflow that can increase productivity.’";

serviceText = new contentarray(8);
serviceText[0] = "‘After-sales services from TOGO are excellent and effective with instant responses.’";
serviceText[1] = "‘TOGO is willing to study our requirements clearly and could provide professional advices. ";
serviceText[2] = "‘I was surprised that our staff could learn how to use the system in half an hour only.’";
serviceText[3] = "‘We are highly satisfied with excellent speed performance and high efficiency in TOGO Web based ERP system.’";
serviceText[4] = "‘We have no difficulties during implementation and installation stages’";
serviceText[5] = "‘TOGO system not only helps us handling complicated tasks easily, but also eliminates many redundant tasks.’";
serviceText[6] = "‘By using the TOGO Web-based ERP Solution, MTS can maintain good customer services and increase operation clearance.’";
serviceText[7] = "‘The scalable TOGO system can definitely support our future development and expansion.’";

function changesolutioncontent()
{
	fscroller2.filters[0].apply()
	
	j=Math.floor(Math.random()*9)
	fscroller2.innerHTML = solutionText[j];

	fscroller2.filters[0].play()

	mytimeout = setTimeout("changesolutioncontent()",12000)
}
	 
function changefeaturecontent()
{
	fscroller2.filters[0].apply()
	
	j=Math.floor(Math.random()*12)
	fscroller2.innerHTML = featureText[j];

	fscroller2.filters[0].play()

	mytimeout = setTimeout("changefeaturecontent()",12000)
}
	 

function changeservicecontent()
{
	fscroller2.filters[0].apply()
	
	j=Math.floor(Math.random()*8)
	fscroller2.innerHTML = serviceText[j];

	fscroller2.filters[0].play()

	mytimeout = setTimeout("changeservicecontent()",12000)
}
	 

function changehomecontent()
{
	fscroller2.filters[0].apply()
	
	j=Math.floor(Math.random()*6)
	fscroller2.innerHTML = homeText[j];

	fscroller2.filters[0].play()

	mytimeout = setTimeout("changehomecontent()",12000)
}
	 

