function verPanel(panel)
{	
	$.ajax({
		type: "GET",
        url: "panel.html?id=" + panel,
        async:false,
        dataType: "script",
        error: function(objeto, quepaso, otroobj){
            //Si hay un error
			alert("En Chrome no funciona");
        },
        global: true,
        ifModified: false,
        processData:true,
        success: function(datos){
		   $('div#table').html(datos);
        },
        timeout: 3000
	});    
}
