function Avanzar(anno, paginaDestino){

	var miForm = eval(document.frmPrevioHouse) ;
	
	
    miForm.action = paginaDestino
	miForm.submit();
	return true;
}


function Enviar(codRiesgo, paginaDestino) {
	document.frmPrevioHouse.action = paginaDestino ;
	document.frmPrevioHouse.submit() ;
}

function MostrarAyuda(tipoGar) {
	
	var miVen ;
	var msgAyuda = '';
	var propVen = '';
	
	switch (tipoGar) {
		case 'CMV':		// CURRENT MARKET VALUE
			msgAyuda  = '<center><b><u>CURRENT MARKET VALUE</u></center></b><br>'; 
			msgAyuda += ' Approximate market value in Spain.';
			propVen = 'width=460,height=120' ;
			break;
		case 'CAR':		// COURTESY CAR OPTION
			msgAyuda  = '<center><b><u>COURTESY CAR OPTION</u></center></b><br>'; 
			msgAyuda += ' Subject to policy limits.';
			propVen = 'width=460,height=120' ;
			break;
	}

	miVen = window.open('','',propVen);

	msgAyuda = '<font face="Verdana" color="#006699" style="font:11px">' + msgAyuda + '</font>';
	
	miVen.document.open() ;
	miVen.document.write(msgAyuda) ;
	miVen.document.write('<br><br><center><a href="javascript:window.close();" style="font-face:Verdana;color:#006699;text-decoration:none">close</a></center>') ;
	miVen.document.close() ;

}