// <script language="javascript">
var calWin=null;
var fcal=null;
var fcampo=null;


function calendario(forma, campo,rednatools_dir) {
	fcal=forma;
	fcampo=campo;
	calWin=window.open("","cal","toolbar=0, screenx=250, screenys=250,width=250,height=250");
	calWin.document.open();
	calWin.document.location.href=rednatools_dir+"redna_rad/rn_cal.php?pop=1&cur="+document.forms[fcal].elements[fcampo].value;
	calWin.focus();
}

function selecciona(estafecha) {
	document.forms[fcal].elements[fcampo].value=estafecha;
	document.forms[fcal].elements[fcampo].focus();
	calWin.close();
}

//</script>
