<!--
str   = "音と振動のエレクトロニクス";
pStr  = "";
count = 0;
function out1Char()
{
	if ((count < str.length) && document.all)
	{
		pStr += str.charAt(count++);
		theTEXT.innerText = pStr;
		setTimeout("out1Char()",300);
	}
}

var pop, x = 0, finit = 1;
function flyPop() {
	if(finit) {
		finit = 0;
		if(!window.createPopup) return;
		pop = window.createPopup();
		var obj = document.getElementById("fly");
		var body = pop.document.body;
		body.innerHTML = obj.innerHTML;
		body.style.backgroundColor = "lightcyan";
		body.style.color = "cornflowerblue";
		body.style.fontWeight = "bold";
		body.style.fontSize = "30pt";
		body.style.fontFamily = "Times New Roman";
	 }
	pop.show(x, screen.height * 2 / 3, 180, 45); x += 2;
	if(x + 180 > screen.width) pop.hide();
	else setTimeout("flyPop()", 20);
}

// -->