/*Funcion para seleccionar todo el contenido de un textfield*/
function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}