﻿function MostrarMensaje(texto)
{
window.alert(texto);
}

function mostrardiv(objeto) {

div = document.getElementById(objeto);

div.style.display = '';

}

function ocultardiv(objeto) {

div = document.getElementById(objeto);

div.style.display='none';

}


function AbrirVentana(navegar)
{
window.open(navegar);
}

function ImgCargarCV_onclick()
{
window.open("./UserPersonalData.aspx")
}
