Código:
function validarfechagar() { var hoy=new Date(); var dia=hoy.getDate(); var mes=hoy.getMonth()+1; var ano=hoy.getFullYear(); if (document.formulario.ano_g.value<ano) { alert("La Fecha Indicada Es Invalida debe ser programada a Futuro"); document.getElementById("dia_g").select(); return; } else { if(document.formulario.ano_g.value==ano) { if (document.formulario.mes_g.value<mes) { alert("La Fecha Indicada Es Invalida debe ser programada a Futuro"); document.getElementById("dia_g").select(); return; } else { if(document.formulario.mes_g==mes) { if(document.formulario.dia_g<dia) { alert("La Fecha Indicada Es Invalida debe ser programada a Futuro"); document.getElementById("dia_g").select(); return; } } } } } }