﻿function flashObj(src2,w2,h2){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+w2+'" height="'+h2+'">');
	document.writeln('<param name="movie" value="'+src2+'" />');
	document.writeln('<param name="quality" value="high" />');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln('<embed src="'+src2+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+w2+'" height="'+h2+'" wmode="transparent"></embed>');
	document.writeln('</object>');
}

var count = 8;
function ControlMenu(index)
{
	for(var i=0;i<= count;i++)
	{
	    var ev = document.getElementById('menu_sub_'+i);
	    var e = document.getElementById('menu_master_'+i);
		if(e == null || ev == null )
			continue;
		if(i == index)
		{
			//ev.style.display="block";
		}
		else
		{
			ev.style.display="none";
		}
	}
}
function switchMenu(index)
{   
	document.getElementById('menu_sub_'+index).style.display = "block";
}
function switchMenu2(index)
{   
	document.getElementById('menu_sub_'+index).style.display = "none";
}
