scene_table=new Array(10);
scene_table[0]=0;
scene_table[3]=33;
scene_table[20]=123;
scene_table[39]=93;
scene_table[40]=103;
scene_table[41]=73;
scene_table[44]=133;
scene_table[46]=113;
scene_table[47]=83;
scene_table[49]=143;

function ChangeScene(num)
{
	whichObj("nobmv").GotoFrame(scene_table[num]);
	whichObj("nobmv").Play();

//setTimeout("ChangeScene(0)",30000);

}

function whichObj(objName)
{
	if (navigator.appName=="Netscape")
	{
		return window.document[objName];
	}
	else
	{
		return window[objName];
	}
}




