
//Put the selected items into the shopping cart
function itemsSubmit(chapterFormat, qtForm, mpegForm, bothFormDiscount)
 {
	var theFormat = document.getElementById(chapterFormat).value;
	//window.alert(theFormat);
	//window.alert(chapterFormat + " " + mpegForm);
	var yourstate=window.confirm("I have read and understand Appliance Assistant Productions LLC's legal disclamer.")
	if (yourstate)
	{
		if(theFormat == "quicktime")
		{
			document.getElementById(qtForm).submit();
		}
		
		if(theFormat == "mpeg")
		{
			document.getElementById(mpegForm).submit();
		}
		
		if(theFormat == "both")
		{
			document.getElementById(bothFormDiscount).submit();
			//document.getElementsByName(bothFormDiscount).submit();
		}
	}
	else
	{
		document.location.href = "legal.html";
	}
}



//Put the selected items into the shopping cart (FULL VIDEO ONLY)
function itemFullVideoSubmit(chapterFormat, qtFormSM, qtFormLrg, mpegForm, mail)
 {
	var theFormat = document.getElementById(chapterFormat).value;
	//window.alert(theFormat);
	//window.alert(chapterFormat + " " + mpegForm);
	var yourstate=window.confirm("I have read and understand Appliance Assistant Productions LLC's legal disclamer.")
	if (yourstate)
	{

		if(theFormat == "quicktimeSm")
		{
			document.getElementById(qtFormSM).submit();
		}
		
		if(theFormat == "quicktimeLrg")
		{
			document.getElementById(qtFormLrg).submit();
		}
		
		if(theFormat == "mpeg")
		{
			document.getElementById(mpegForm).submit();
		}
		
		if(theFormat == "mail")
		{
			document.getElementById(mail).submit();
		}
	}
	else
	{
		document.location.href = "legal.html";
	}
}