function changeImage(img_name, img_src)
{
	document[img_name].src = img_src;
}


function PlaySound()
{
	var sound = document.getElementById("flop");
	
	try
	{
		// Real Player
		sound.DoPlay();
	}
	catch(e)
	{
		try
		{
			//Windows / Quicktime
			sound.Play();
		}
		catch(e)
		{
			//do nothing, if no sound supported
		}
	}//end try-catch

}
