function scroll(count,text) {	
	
	window.status = text.substring (count, text.length) + text.substring (0, count)

	if (count < text.length)
		count ++;
	else
		count = 0;

	setTimeout ("scroll(" + count + ",'" + text + "')", 200);
}

function printpage() {
	window.print();  
}