//
//Array de Descricoes
//
vetRefisacDescricao = new Array(
	new Array(),
	new Array('16.041,67',		'28 TAM airliner flight tickets - RIO x SÃO PAULO x RIO',					'2.400,00',		'13.641,67'),
	new Array('48.125,00',		'12 DELL Latitude 100 l Notebooks ', 						'7.200,00',		'40.925,00'),
	new Array('80.208,33',		'27 Tourist packages of 8 days in Paris - France',		'12.000,00',	'68.208,33'),
	new Array('160.416,67',		'2 Flats – 1 bedroom, 1 garage, 55 m² Jardim Paulista – Sao Paulo State',	'24.000,00',	'136.416,67'),
	new Array('320.833,33',		'1 Jaguar S-Type 3.0 V6 SE 240 HP',						'48.000,00',	'272.833,33'),
	new Array('802.083,33',		'4 BMW 3 320 i series ',										'120.000,00',	'682.083,33'),
	new Array('1.604.166,67',	'1 apartment, 4 rooms, 4 suites. 5 garage spaces - 425 m² Morumbi – Sao Paulo State',	'240.000,00',	'1.364.166,67'),
	new Array('3.208.333,33',	'3 Mac Donald Franchises ',									'480.000,00',	'2.728.333,33'),
	new Array('6.416.666,67',	'3 top floor apts  Duplex 3 suites. 2 garage spaces - 400 m² Leblon – Rio de Janeiro State',		'960.000,00',	'5.456.666,67'),
	new Array('9.625.000,00',	'to 4 apartments 4 rooms 356 m² Av. Atlântica – Rio de Janeiro State',				'1.440.000,00',	'8.185.000,00')
);

//Funcao que trocao conteudo
function refisac_alterna_descricao(obj_select)
{
	if (obj_select.value > 0)
	{
		vetDados = vetRefisacDescricao[obj_select.value];

		strDescricao = 	'<b>Maintenance Cost/Month (R$) </b> = ' +  vetDados[0] + '<br/>' +
						'<b>REFISAC Investment/Month (R$) </b> = ' + vetDados[2] + '<br/>' +
						'<b>Savings Generated/Month (R$) </b> = ' + vetDados[3]+ '<br/>' +
						'<b>Equivalent to  </b>' + vetDados[1];
		
		janela = window.open("","","height = 140 , width = 400, scrollbars=no, status=no, menubar=no, toolbar=no, titlebar=no");
		
		janela.document.open();
		
		janela.document.write("<html><head><title>Description</title></head><style type='text/css'><!--.texto12 {  font-family: Arial, Helvetica, sans-serif; font-size: 12px} .texto14{  font-family: Arial, Helvetica, sans-serif; font-size: 14px}--></style><body bgcolor='#FFFFFF' text='#000000'><div class='texto14' align='center' style='color:#666666;'><b>REFISAC Simulator</b></div><br><div class='texto12' style='color:#666666;'>"+strDescricao+"</div></body></html>");

	}
}