function scroller() {
	if (navigateur==1) {
		document.write('<div class="conteneur_scroller" id="conteneur_scroller">');
		document.write('<div class="scroller_content">');
		document.write('<div class="scroller_text" id="scroller">');
		document.write('<a style="text-decoration : none; color : #7B7B7B;" href="KeyBenefits/index.html">');
		document.write('&raquo; Monitor working hours<br/>');
		document.write('&raquo; Analyze performance<br/>');
		document.write('&raquo; Track stolen vehicle<br/>');
		document.write('&raquo; Manage several types of alarms<br/>');
		document.write('&raquo; Reduce mileage and fuel consumption<br/>');
		document.write('&raquo; Minimize insurance costs<br/>');
		document.write('&raquo; Increase number of completed jobs<br/>');
		document.write('&raquo; Validate overtime and timesheet claims<br/>');
		document.write('&raquo; Eliminate unauthorized journeys<br/>');
		document.write('&raquo; Reduce communication costs<br/>');
		document.write('&raquo; Improve customer satisfaction<br/>');
		document.write('&raquo; Identify best working practices<br/>');
		document.write('&raquo; Enable more effective maintenance scheduling<br/>');
		document.write('&raquo; ...<br/>');
		document.write('</a>');
		document.write('</div>');
		document.write('</div>');
		document.write('</div>');
		
		height=document.getElementById("scroller").offsetHeight;
		
		setTimeout("startScroller()",1000);	
	} else {
		document.write('<div class="conteneur_scroller" id="conteneur_scroller">');
		document.write('<marquee direction="up" loop="-1" scrollamount="1" scrolldelay="20" width="300" height="120">');
		if(navigateur==3) {
			document.write('<p/>&nbsp;<p/>&nbsp;<p/>&nbsp;<p/>&nbsp;<p/>&nbsp;<p/>');	
		}
		document.write('<a style="text-decoration:none;color:#7B7B7B;" href="KeyBenefits/index.html">');
		document.write('&raquo; Monitor working hours<br/>');
		document.write('&raquo; Analyze performance<br/>');
		document.write('&raquo; Track stolen vehicle<br/>');
		document.write('&raquo; Manage several types of alarms<br/>');
		document.write('&raquo; Reduce mileage and fuel consumption<br/>');
		document.write('&raquo; Minimize insurance costs<br/>');
		document.write('&raquo; Increase number of completed jobs<br/>');
		document.write('&raquo; Validate overtime and timesheet claims<br/>');
		document.write('&raquo; Eliminate unauthorized journeys<br/>');
		document.write('&raquo; Reduce communication costs<br/>');
		document.write('&raquo; Improve customer satisfaction<br/>');
		document.write('&raquo; Identify best working practices<br/>');
		document.write('&raquo; Enable more effective maintenance scheduling<br/>');
		document.write('&raquo; ...<br/>');
		document.write('</a>');	
		if(navigateur==3) {
			document.write('<p/>&nbsp;<p/>&nbsp;<p/>&nbsp;<p/>&nbsp;<p/>&nbsp;<p/>&nbsp;');	
		}
		document.write('</marquee>');	
		document.write('</div>');	
	}
}

function startScroller() {
	if(document.getElementById) {
		document.getElementById("scroller").style.top=newTop+"px";
		setTimeout("actionScroller()", 10);
	}
}

function actionScroller() {
	newTop=newTop-1;
	document.getElementById("scroller").style.top = newTop+"px";	
	
	if((newTop+height)>0) {
		setTimeout("actionScroller()",100); 
	}
	else
		stopScroller();
}

function stopScroller() {
	newTop=document.getElementById("conteneur_scroller").offsetHeight;
	startScroller()
}