function playVideo(buttonType, lowfile, highfile, lowzip, highzip, id, videoID)
	{
		if(buttonType == "Video")
		{
			len = eval("document.form1." + id + ".length")
			
			if(len > 1)
			{
				if(!eval("document.form1." + id + "[0].checked") && !eval("document.form1." + id + "[1].checked"))
					window.alert("Please choose a bandwidth");
				
				if (eval("document.form1." + id + "[0].checked"))
					window.location = "/resources/animations/anims/low/" + lowfile;
				if (eval("document.form1." + id + "[1].checked"))
					window.location = "/resources/animations/anims/high/" + highfile;
			}
			else
			{
				if(!eval("document.form1." + id + ".checked"))
					window.alert("Please choose a bandwidth");
				
				if (eval("document.form1." + id + ".checked"))
				{
					if(lowfile != "")
						window.location = "/resources/animations/anims/low/" + lowfile;

					else if (highfile != "")
						window.location = "/resources/animations/anims/high/" + highfile;
				}
			}
		}
		
		if(buttonType == "Download")
		{
			len = eval("document.form1." + id + ".length")
			
			if(len > 1)
			{
				if(!eval("document.form1." + id + "[0].checked") && !eval("document.form1." + id + "[1].checked"))
					window.alert("Please choose a bandwidth");
				
				if (eval("document.form1." + id + "[0].checked"))
					window.location = "/resources/animations/anims/zip/" + lowzip;
				
				if (eval("document.form1." + id + "[1].checked"))
					window.location = "/resources/animations/anims/zip/" + highzip;
			}
			
			else
			{
				if(!eval("document.form1." + id + ".checked"))
					window.alert("Please choose a bandwidth");
				
				if (eval("document.form1." + id + ".checked"))
				{
					if(lowzip != "")
						window.location = "/resources/animations/anims/zip/" + lowzip;

					else if (highzip != "")
						window.location = "/resources/animations/anims/zip/" + highzip;
				}			
			}
		}
	}
	
function show(video)
{
	theVideo = "video" + video;
	img = "img" + video;
	
	v = document.getElementById(theVideo);
	imgOBJ = document.getElementById(img);
	
	if(v.style.display == "none")
		{
			v.style.display = "block";
			imgOBJ.src = "/images/redlaf/arrowGreyDown.gif";
		}
	else
		{
			v.style.display = "none";
			imgOBJ.src = "/images/redlaf/arrowGreyRight.gif";
		}
}