dominio="tempsxtu.com"                                                                 
conector="@"                                                                        

function load_gallery( id, limit, table ) {
	$.ajax({
		type: "POST",
		url: "inc/galeria.php",
		data: "id=" + id + "&limit=" + limit + "&table=" + table,
		success: function(msg){
			document.getElementById( "contenedor_fotos" ).innerHTML = msg;
			$('#gallery a').lightBox({fixedNavigation:true});
		}
	});
}

function dame_correo( usuario ){                                                             
	return usuario + conector + dominio                                               
}                                                                                   
                                                                                            
function escribe_enlace_correo( usuario, texto ){
	if ( texto == "" ) {
		document.write("<a href='mailto:" + dame_correo( usuario ) + "'>" + dame_correo( usuario ) + "</a>")
	} else {
		document.write("<a href='mailto:" + dame_correo( usuario ) + "'>" + texto + "</a>")
	}
}                                                                                   