<script>
function tieralter(d1,m1,y1) {
var oDate1 = new Date(y1, (m1-1), d1);
var oDate2 = new Date();
var iDays = Math.floor((oDate2.getTime()-oDate1.getTime())/(1000 * 86400));
iDays = (iDays / 365) - ((iDays % 365) / 365);
document.write(iDays) }
</script> |