
/* No need to edit Start */

function loadXmlHttp(url, id) {
var f = this;
f.xmlHttp = null;
/*@cc_on @*/ // used here and below, limits try/catch to those IE browsers that both benefit from and support it
/*@if(@_jscript_version >= 5) // prevents errors in old browsers that barf on try/catch & problems in IE if Active X disabled
try {f.ie = window.ActiveXObject}catch(e){f.ie = false;}
@end @*/
if (window.ActiveXObject) 
	f.xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
else if (window.XMLHttpRequest&&!f.ie||/^http/.test(window.location.href))
	f.xmlHttp = new XMLHttpRequest(); // Firefox, Opera 8.0+, Safari, others, IE 7+ when live - this is the standard method
else if (/(object)|(function)/.test(typeof createRequest))
	f.xmlHttp = createRequest(); // ICEBrowser, perhaps others
else {
f.xmlHttp = null;
 // Internet Explorer 5 to 6, includes IE 7+ when local //
/*@cc_on @*/
/*@if(@_jscript_version >= 5)
try{f.xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");}
catch (e){try{f.xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}catch(e){f.xmlHttp=null;}}
@end @*/
}
if(f.xmlHttp != null){
f.el = document.getElementById(id);
f.xmlHttp.open("GET",url,true);
f.xmlHttp.onreadystatechange = function(){f.stateChanged();};
f.xmlHttp.send(null);
}
else alert('Your browser does not support AJAX!'); // substitute your desired request object unsupported code here
}


loadXmlHttp.prototype.stateChanged=function () {
	if (this.xmlHttp.readyState == 4 && (this.xmlHttp.status == 200 || !/^http/.test(window.location.href)))
	{
		this.el.innerHTML = this.xmlHttp.responseText;
	}
}

function loadPage(page)
{
	new loadXmlHttp(page, 'quotes')
}

/* FS Commnand*/
function pageSize(val) {
	//alert("changePage "+val);
}

fileCount = 1;

function rotate_testimonial() {
	
	loadPage(testimonialPath+'home_quotes/'+fileCount+'.htm');
	
	if(fileCount >= fileLimit)
		fileCount = 0;

	fileCount++;

	testimonial_timer();
}

function getTimeStamp()
{
	var currentDate = new Date()
    return ""+currentDate.getFullYear()+""+currentDate.getMonth()+""+currentDate.getDate()+""+currentDate.getTime();	
}


/* FS Commnand*/

/* No need to edit End */




var fileLimit = 4; // number of testimonials

function testimonial_timer()
{
	setTimeout("rotate_testimonial()",10000); //increase or decrease the number to adjust the period of rotation 
}

