<!--
	message = "โครงการพัฒนาสื่อการเรียนการสอนวิชาฟิสิกส์" + "^" + "^" + "ภาควิชาฟิสิกส์ คณะวิทยาศาสตร์ มหาวิทยาลัยสยาม" + "^" + "^" + "^";
	scrollSpeed = 60;
	lineDelay   = 1000;
	txt         = "";
function StatusText(pos) {
	if (message.charAt(pos) != '^') {
		txt    = txt + message.charAt(pos);
		status = txt;
		pauze  = scrollSpeed;
	}
	else {
		pauze = lineDelay;
		txt   = "";
		if (pos == message.length-1) pos = -1;
	}
	pos++;
	setTimeout("StatusText('"+pos+"')",pauze);
}
StatusText(0);
//-->
