
<!--

// DO NOT EDIT THIS DOCUMENT. IT IS AUTO-GENERATED
// LAST GENERATED: Wed, 22 Jul 2009 02:19:25 -0500

var prices = new Array();
prices.push(0) // blank, 0
prices.push(10) // Support - Recurring, 40
prices.push(28) // Support - Recurring, 41
prices.push(105) // Support - Recurring, 42
prices.push(30) // Support - 3 months, 43
prices.push(55) // Support - 6 months, 44
prices.push(105) // Support - 1 year, 45
prices.push(195) // Support - 2 years, 46
prices.push(275) // Support - 3 years, 47
prices.push(120) // Software update Pro, 59
prices.push(120) // Software update Standard, 60


function buildPrices()
{
// build prices, update page
for (var i=1; i < prices.length; i++) {
     if(document.getElementById('price'+i))
		document.getElementById('price'+i).innerHTML = '$'+prices[i];
	}
}


//->

