// JavaScript Document

function VentanaBusquedaFecha(sDestino,txtHaceSubmit)
	{
		var newWindow;
        var ruta = 'BusqFechaCalendario.php?txtCampo='+sDestino+'&txtHaceSubmit='+txtHaceSubmit;
 	    var xpos=(screen.width/2)-150;
        var ypos=(screen.height/2)-150;
		var props = 'scrollBars=no,resizable=no,toolbar=no,menubar=no,location=no,directories=no,width=280,height=290,left=' + xpos + ',top=' + ypos;
//		alert(props);
		newWindow = window.open(ruta, '', props);
	}	

function CargaDatosFecha(Fecha,FechaMysql,Destino,txtHaceSubmit)
	{
 //    alert('Entro a CargaDatosFecha');
     var objFecha    = document.getElementById(Destino);       
     objFecha.value = Fecha;		
	 if ( txtHaceSubmit == 1 ) {
//       alert('submit');
	    frm1.submit();
	 }
	}
