/* author: galaxy78@mailcity.com */
/* Generated by AceHTML Freeware http://freeware.acehtml.com */
/* Creation date: 27/09/2004 */

function stop_run(){
	document.all.markme.stop();
	document.all.status_box.value="Paused";
}
function continue_run(){
	document.all.markme.start();
	document.all.status_box.value="Playing";
}
function play_pause(){
	if(document.all.status_box.value=="Playing"){
		document.all.markme.stop();
		document.all.status_box.value="Paused";
	}else{
		document.all.markme.start();
		document.all.status_box.value="Playing";
	}
}
function go_right(){
	document.all.markme.direction="right";
}
function go_left(){
	document.all.markme.direction="left";
}
function fast_run(){
	document.all.markme.scrollAmount="8";
}
function slow_run(){
	document.all.markme.scrollAmount="3";
}
