function borraMsg(obj)
{
	document.getElementById(obj).style.display = 'none';
}

function showInfoEmpresa(marcador,empId)
{
	marcador.openInfoWindowHtml('<img src="img/load.gif" alt="Cargando" align="center">');
	$.ajax({
				type: 'POST',
				url : 'includes/aj/emp-info.php',
				data: 'id=' + empId,
				success: function(data)
				{
					marcador.closeInfoWindow();
					marcador.openInfoWindowHtml(data);
				}
			});
}

//POPUP function
function popup(url,w,h) {
	iz=(screen.width - w) /2;
	de=(screen.height - h) / 3;
	newwindow=window.open(url,'Imagen','height=' + h + ',width=' + w + ',scrollbars=yes,location=no,left=' + iz + ',top=' + de);
	if (window.focus) {newwindow.focus()}
	return false;
}

//main
$(document).ready(function(){	
	$('#topLogo').html('<img src="img/cab-top.png" alt="inicio" width="763" heigh="54">');

	$('.arr').html('&#64;');
});
