Prueba esto, yo no lo he probado, igual tienes que hacer algún arreglo.
Código Javascript
:
Ver original<script>
fecha=new Date();
day=fecha.getDate();
month=fecha.getMonth()+1;
year=fecha.getFullYear();
document.getElementById('fecha1').value=day+"/"+month+"/"+year;
tiempo=fecha.getTime();
//sumar dos días en milisegundos
milisegundos=parseInt(2*24*60*60*1000);
//Modificamos la fecha actual
total=fecha.setTime(tiempo+milisegundos);
day=fecha.getDate();
month=fecha.getMonth()+1;
year=fecha.getFullYear();
document.getElementById('fecha2').value=day+"/"+month+"/"+year;
</script>