
function canvifoto(pos,total){
	for(i=0;i<total;i++){
		document.getElementById('img_'+i).style.position='absolute';
		document.getElementById('img_'+i).style.visibility='hidden';
	}
	
	document.getElementById('img_'+pos).style.position='static';
	document.getElementById('img_'+pos).style.visibility='visible';
}

function comprovacio(camps,noms,eltexte,frase){
	camps=camps.split(',');
	noms=noms.split(',');
	correcte=1;

	for(i=0;i<(camps.length-1);i++){
		
		if(!document.getElementById(camps[i]).value || document.getElementById(camps[i]).value==noms[i]){
			alert(eltexte+noms[i]);
			document.getElementById(camps[i]).focus();
			correcte=0;
			return false;
		}
	}
	
	if(correcte){
		if(confirm(frase)) correcte=1;
		else correcte=0;
	}
	
	if(correcte){
		return true
	}else return false;
}

function calcul(camp1,camp2,camp3){
	//camp 1 és el capital
	//camp 2 anys, termini de pagament
	//camp 3 interes
	var interes;
	var plazo;
	var cuota;
	
	plazo=camp2*12;
	interes=(camp3/12);
	
	valor1=1+(interes/100);
	valor2=-1*plazo;
	valor3=Math.pow(valor1,valor2);
	valor4=1-valor3;
	
	cuota=(camp1*interes)/(100*valor4);
	cuota=Number(cuota).toFixed(2);
	
	document.getElementById('cuota').value=cuota;
}
