function ResetVideoSuportValues()
{

	document.frmVideoSupport.cboVideoSupportTime.value = 0;


	document.getElementById("DisplayVideoSupportMinutes").innerHTML = "20";
	document.getElementById("DisplayVideoSupportDiscount").innerHTML = "0%";
	document.getElementById("DisplayVideoSupportTotal").innerHTML = "$49.99";
	document.getElementById("DisplayVideoSupportSaving").innerHTML = "$0.00";

	document.frmVideoSupport.WP_Total.value = "49.99";
	document.frmVideoSupport.InfoTotal.value = "$49.99";
	document.frmVideoSupport.InfoSaving.value = "$0.00";
	document.frmVideoSupport.VS_Time.value = "20";
}



function DisplayValues()
{

	if (document.frmVideoSupport.cboVideoSupportTime.value == 0)
		{
			document.getElementById("DisplayVideoSupportMinutes").innerHTML = "20";
			document.getElementById("DisplayVideoSupportDiscount").innerHTML = "0%";
			document.getElementById("DisplayVideoSupportTotal").innerHTML = "$49.99";
			document.getElementById("DisplayVideoSupportSaving").innerHTML = "$0.00";

			document.frmVideoSupport.WP_Total.value = "49.99";
			document.frmVideoSupport.InfoTotal.value = "$49.99";
			document.frmVideoSupport.InfoSaving.value = "$0.00";
			document.frmVideoSupport.VS_Time.value = "20";
		}

	else if (document.frmVideoSupport.cboVideoSupportTime.value == 1)
		{
			document.getElementById("DisplayVideoSupportMinutes").innerHTML = "40";
			document.getElementById("DisplayVideoSupportDiscount").innerHTML = "40.00%";
			document.getElementById("DisplayVideoSupportTotal").innerHTML = "$59.99";
			document.getElementById("DisplayVideoSupportSaving").innerHTML = "$39.99";

			document.frmVideoSupport.WP_Total.value = "59.99";
			document.frmVideoSupport.InfoTotal.value = "$59.99";
			document.frmVideoSupport.InfoSaving.value = "$39.99";
			document.frmVideoSupport.VS_Time.value = "40";
		}
	else if (document.frmVideoSupport.cboVideoSupportTime.value == 2)
		{
			document.getElementById("DisplayVideoSupportMinutes").innerHTML = "60";
			document.getElementById("DisplayVideoSupportDiscount").innerHTML = "53.33%";
			document.getElementById("DisplayVideoSupportTotal").innerHTML = "$69.99";
			document.getElementById("DisplayVideoSupportSaving").innerHTML = "$79.98";

			document.frmVideoSupport.WP_Total.value = "69.99";
			document.frmVideoSupport.InfoTotal.value = "$69.99";
			document.frmVideoSupport.InfoSaving.value = "$79.98";
			document.frmVideoSupport.VS_Time.value = "60";
		}
}
