function borrar_texto_name(variable)
{
    document.getElementsByName(variable)[0].value = "";
}

function colocarFecha (de, para)
{
    a = convertirFecha(document.getElementById(de).value);
    document.getElementsByName(para)[0].value = a;
}

function convertirFecha (fecha)
{
    if (fecha == "")
        return "";
    mes = fecha.substring(5,7);
    dia = fecha.substring(8,10);
    anio = fecha.substring(0,4);
    fec = "";
    if(mes == "01") fec="Jan";
    if(mes=="02") fec="Feb";
    if(mes=="03") fec="Mar";
    if(mes=="04") fec="Apr";
    if(mes=="05") fec="May";
    if(mes=="06") fec="Jun";
    if(mes=="07") fec="Jul";
    if(mes=="08") fec="Aug";
    if(mes=="09") fec="Sep";
    if(mes=="10") fec="Oct";
    if(mes=="11") fec="Nov";
    if(mes=="12") fec="Dec";
    fec = fec+" "+dia+", "+anio;
    return fec;
}
