function swaudio(on)
	{
	if(document.sound1)
		{
		if(on == 1)
			document.sound1.Play();
		else if(on == 0)
			document.sound1.Stop();
		}
	}


