var php_base = "non_health_calculators/effective_to_nominal/";

var effective_value = document.getElementById('effective_value');


function calculate_nominal()
{
	var effective = get_value('effective_value');
	var nominal = Math.round((Math.pow(((effective / 100) + 1), (1.00 / 12)) - 1) * 120000) / 100;
	
	set_value('nominal_value', nominal);
}

function select_correct_handler(func, index)
{
	for (var i = 0; i < gslider_array.length; i++)
	{
		gslider_array[i].onchange = func;		
	}	
}

select_correct_handler(calculate_nominal, 0);
