function subLnbScale(a)	{
	var jm = document.getElementById("subNavi02");
	if (jm.style.overflow == "visible") 	{
		jm.style.overflow="visible";
		jm.style.height = a + "px";

		}
		else {
			jm.style.overflow="hidden";
			jm.style.height = a + "px";
			}
}


function mainTopScale(p)	{
	var jm02 = document.getElementById("topSwf");
	if (jm02.style.overflow == "visible") 	{
		jm02.style.overflow="visible";
		jm02.style.height = p + "px";

		}
		else {
			jm02.style.overflow="hidden";
			jm02.style.height = p + "px";
			}
}

