	function comments()
	{
		window.open("/src/English/comments.html", "comments", "left=50, top=50, width=730, height=550, resizable=yes, scrollbars=yes");
	}	
	function faq()
	{
		window.open("/src/English/faq.html", "faq", "left=50, top=50, width=730, height=550, resizable=yes, scrollbars=yes");
	}	
	function osupport()
	{
		window.open("http://support.onlinetraffic.com/ots.html", "osupport", "left=50, top=50, width=550, height=625, resizable=no, scrollbars=no");
	}
	function SSL_Encrypted_Secured()
	{
		window.open("/src/English/SSL_Encrypted_Secured.html", "secured", "left=50, top=50, width=500, height=585, resizable=no, scrollbars=no");
	}		

function initRollovers() {
	if (!document.getElementById) return
	
	var aPreLoad = new Array();
	var sTempSrc;
	var aImages = document.getElementsByTagName('img');

	for (var i = 0; i < aImages.length; i++) {		
		if (aImages[i].className == 'imgover') {
			var src = aImages[i].getAttribute('src');
			var ftype = src.substring(src.lastIndexOf('.'), src.length);
			var hsrc = src.replace(ftype, '_ovr'+ftype);

			aImages[i].setAttribute('hsrc', hsrc);
			
			aPreLoad[i] = new Image();
			aPreLoad[i].src = hsrc;
			
			aImages[i].onmouseover = function() {
				sTempSrc = this.getAttribute('src');
				this.setAttribute('src', this.getAttribute('hsrc'));
			}	
			
			aImages[i].onmouseout = function() {
				if (!sTempSrc) sTempSrc = this.getAttribute('src').replace('_ovr'+ftype, ftype);
				this.setAttribute('src', sTempSrc);
			}
		}
	}
}

function enlargeText1()
{
	x = document.getElementById('textarea');
	x.style.fontSize = '1em';
}
function enlargeText2()
{
	x = document.getElementById('textarea');
	x.style.fontSize = '1.5em';
}
function enlargeText3()
{
	x = document.getElementById('textarea');
	x.style.fontSize = '2em';
}

    var imageon0, imageon1, imageon2, imageon3, imageon4, x, z;

function load_people()
{ 
imageon0 = new Image();      	
    imageon0.src = "/images/homepage/comment1.jpg";

imageon1 = new Image(); 
    imageon1.src = "/images/homepage/comment2.jpg";

imageon2 = new Image();
    imageon2.src = "/images/homepage/comment3.jpg";

imageon3 = new Image();
    imageon3.src = "/images/homepage/comment4.jpg";

imageon4 = new Image();     
    imageon4.src = "/images/homepage/comment5.jpg";  

	x = 0;
	z = 0;
	setTimeout('rotatepeople()', 5000);
}

function rotatepeople()
{   
    document.getElementById('testimonial').src = eval('imageon'+x).src;
    setTimeout( 'rotatepeople()', z == 0 ? 20000 : 25000 );
    if( ++x == 5 ){ x = 0; ++z; }
}