﻿function periods()
{
var a =
	'<table id=totals2 cellspacing=0 cellpadding=4>' +
	'<tr>' +
	'<th>'+_('Billing cycle')+'</th>' +
	'<th>'+_('Monthly price')+'</th>' +
	'<th>'+_('Install price')+'</th>' +
	'</tr>' +
	
	'<tr>' +
	'<td><input type=radio name=radioMonths value="0" discount=100>'+_('Request free trial (available for 256MB model)')+'</td>' +
	'<td></td>' +
	'<td></td>' +
	'</tr>' +
	
	'<tr class=selected>' +
	'<td><input type=radio checked name=radioMonths value="1" discount=0>'+_('1 month')+'</td>' +
	'<td></td>' +
	'<td></td>' +
	'</tr>' +

	'<tr>' +
	'<td><input type=radio name=radioMonths value="3" discount=5>'+_('3 months (discount 5%)')+'</td>' +
	'<td></td>' +
	'<td></td>' +
	'</tr>' +

	'<tr>' +
	'<td><input type=radio name=radioMonths value="6" discount=10>'+_('6 months (discount 10%)')+'</td>' +
	'<td></td>' +
	'<td></td>' +
	'</tr>' +

	'<tr>' +
	'<td><input type=radio name=radioMonths value="12" discount=15>'+_('12 months (discount 15%)')+'</td>' +
	'<td></td>' +
	'<td></td>' +
	'</tr>' +

	
	'</table>';
	return a;
}
