-
Notifications
You must be signed in to change notification settings - Fork 0
/
VM1314-DIC.htm
607 lines (602 loc) · 44.8 KB
/
VM1314-DIC.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
<html>
<head>
<title>PARANORMALIA (paranormalia.tk - paranormalia1.tk)</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="shortcut icon" href="paranormalia.ico">
<script language="JavaScript">
<!--
var speed = 90
var pause = 3000
var timerID = null
var bannerRunning = false
var ar = new Array()
ar[0] = "Paranormalia - Fenómenos extraños que no se pueden explicar."
var currentMessage = 0
var offset = 0
function stopBanner() {
if (bannerRunning)
clearTimeout(timerID)
bannerRunning = false
}
function startBanner() {
stopBanner()
showBanner()
}
function showBanner() {
var text = ar[currentMessage]
if (offset < text.length) {
if (text.charAt(offset) == " ")
offset++
var partialMessage = text.substring(0, offset + 1)
window.status = partialMessage
offset++ // IE sometimes has trouble with "++offset"
timerID = setTimeout("showBanner()", speed)
bannerRunning = true
} else {
offset = 0
currentMessage++
if (currentMessage == ar.length)
currentMessage = 0
timerID = setTimeout("showBanner()", pause)
bannerRunning = true
}
}
startBanner();
// -->
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>
</head>
<body bgcolor="#000000" text="#FFFFFF" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" onLoad="MM_preloadImages('cerrar2.jpg')">
<script language="JavaScript1.2">
document.body.style.background="url('fondoinicioG.jpg') #000000 center no-repeat fixed"
</script>
<div id="contadorWEB" style="position:absolute; left:9px; top:-50px; width:200px; height:30px; z-index:1; visibility: hidden;">
<div align="center">
<script type="text/javascript" language="JavaScript">
<!--
document.write("<img src=\"http://www.ademails.com/cgi-bin/contador.cgi?ID=40168");
document.write("&referer=");
document.write(escape(document.referrer));
document.write("\" border=0 alt=\"\">");
// -->
</script>
</div>
</div>
<div id="contadorVDM" style="position:absolute; left:9px; top:-50px; width:200px; height:30px; z-index:2; visibility: hidden;">
<div align="center">
<script type="text/javascript" language="JavaScript">
<!--
document.write("<img src=\"http://www.ademails.com/cgi-bin/contador.cgi?ID=1059917884");
document.write("&referer=");
document.write(escape(document.referrer));
document.write("\" border=0 alt=\"\">");
// -->
</script>
</div>
</div>
<div align="center">
<table width="360" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="171" align="right" valign="middle"><a href="https://www.facebook.com/paranormaliaweb/" target="_blank"><img src="Facebook.gif" title="Síguenos en Facebook" width="98" height="29" border="0"></a></td>
<td width="10"><b><font face="Arial"></font></b></td>
<td width="171" align="left" valign="middle"><b><font face="Arial"><a href="https://paranormaliaweb.wordpress.com/" target="_blank"><img src="BLOG.gif" title="Entrar en el BLOG de Paranormalia" width="98" height="29" border="0" align="absmiddle"></a></font></b></td>
</tr>
</table>
<table width="606" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="70" align="center" valign="middle"><strong><font color="#FFFFCC" size="6">Voces
del Misterio</font></strong><br>
<strong><font size="5">TEMPORADA 2013/2014 - DICIEMBRE</font></strong>
<a href="http://blip.tv/paranormalia-voces-misterio-2/rss/mp3/" target="_blank">
</a><a href="http://www.ivoox.com/podcast-podcast-paranormalia-vdm_fg_f124678_filtro_1.xml" target="_blank"><img src="Icono_PodCast2_chico.png" title="RSS de Paranormalia" width="18" height="18" border="0"></a><br>
<table width="601" border="1" cellpadding="0" cellspacing="0" bordercolor="#999999">
<tr>
<td width="18" align="center" valign="middle"><img src="descargar_iVoox.gif" width="18" height="18" border="0"></td>
<td align="center" valign="middle"><font color="#FFCCFF" size="2">Programa
completo y sin comprimir, formato<strong><font color="#CC9933">
MP3 (24 Kbps)</font></strong></font></td>
<td width="86" align="center" valign="middle" bgcolor="#333333"><img src="Logo_iVoox.gif" width="39" height="11"></td>
</tr>
<tr>
<td align="center" valign="middle"><img src="descargar_MF2.gif" width="18" height="18" border="0"></td>
<td align="center" valign="middle"><font color="#FFCCFF" size="2">Programa
completo y comprido en RAR, formato <strong><font color="#33CCFF">MP3
(24 Kbps)</font></strong></font></td>
<td align="center" valign="middle" bgcolor="#FFFFFF"><font color="#FFCCFF" size="2"><img src="Logo_MediaFire.gif" width="82" height="11" border="0"></font></td>
</tr>
</table></td>
</tr>
<tr>
<td align="center" valign="middle"><br>
<table width="100%" border="1" cellpadding="0">
<tr>
<td><table width="100%" height="45" border="0" cellpadding="0">
<tr>
<td width="20%" align="center" valign="middle"><font size="3"><strong>VDM
30/12/13 <br>
<font color="#FFFF00">(8x21)</font></strong></font></td>
<td align="center" valign="middle"><font size="3"><em><font color="#FFFF00"><strong>Casas
encantadas: Torreblanca, Colegio Julio Cesar, Puerta Osario,<br>
Equipo Quirúrgico Municipal</strong></font></em></font><font size="3"><em><font color="#FFFF00"><strong>,
Parking Escuelas Pías</strong></font></em></font></td>
</tr>
</table></td>
</tr>
<tr>
<td><p align="justify"><font size="2">Edición <strong>Nº
333</strong> de "Voces del Misterio" del 30 de Diciembre
de 2013. Un programa dedicado a nuevos casos e investigaciones
en Sevilla en <font color="#FFFFCC"><em><strong>casas encantadas</strong></em></font>.
Hablaremos de las <font color="#FFFFCC"><em><strong>apariciones
en el colegio Julio César</strong></em></font>. El <font color="#FFFFCC"><em><strong>poltergeist
violento en la barriada sevillana de Torreblanca</strong></em></font>;
hablamos de los inquietantes <font color="#FFFFCC"><em><strong>fenómenos
paranormales en la Puerta Osario</strong></em></font>; <font color="#FFFFCC"><em><strong>manifestaciones
paranormales en el Equipo Quirúrgico Municipal</strong></em></font>
y del <font color="#FFFFCC"><em><strong>parking maldito en Escuelas
Pías</strong></em></font>, todo parte de la "SEVILLA
OCULTA". Último programa del año, en <font color="#FF3300"><strong>SFC
Radio (91.6 FM)</strong></font>.</font></p>
<p align="justify"><font size="2">Un programa dirigido por <strong>Jesús
García</strong> y <strong>José Manuel García
Bautista</strong>.</font></p>
<div align="center">
<table border="0" cellpadding="0">
<tr>
<td width="24" height="24" align="center" valign="middle"><a href="http://www.mediafire.com/download/fzkfctuu0i80wc9/VocesDelMisterio-301213.rar" target="_blank"><img src="descargar_MF2.gif" width="24" height="24" title="Descargar archivo desde MediaFire.com" border="0"></a></td>
<td width="24" height="24" align="center" valign="middle"><div align="center"><a href="http://www.ivoox.com/voces-del-misterio-30-12-13-n-333-audios-mp3_rf_2681214_1.html" target="_blank"><img src="descargar_iVoox.gif" width="24" height="24" title="Descargar archivo desde iVoox.com" border="0"></a></div></td>
<td width="24" height="24"><div align="center"><a href="http://archive.org/download/Vdm-Emision301213/VocesDelMisterio-301213.mp3" target="_blank"><img src="descargar_InternetArchive.gif" width="24" height="24" title="Para descargar este MP3 desde Internet Archive utiliza el botón derecho del ratón y seleccionar "Guardar destino como..."" border="0"></a></div></td>
<td width="290" bgcolor="#999999"><object data="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision301213/VocesDelMisterio-301213.mp3" type="application/x-shockwave-flash" height="24" width="290">
<param value="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision301213/VocesDelMisterio-301213.mp3" name="movie" />
<param value="high" name="quality" />
<param value="true" name="menu" />
<param value="transparent" name="wmode" />
</object></td>
</tr>
</table>
<strong><font color="#FFFFCC" size="2">(SUMARIO OBTENIDO DE <a href="http://www.vocesdelmisterio.com/" target="_blank">VOCES
DEL MISTERIO</a>)</font></strong></div></td>
</tr>
</table>
<br>
<table width="100%" border="1" cellpadding="0">
<tr>
<td><table width="100%" height="45" border="0" cellpadding="0">
<tr>
<td width="20%" align="center" valign="middle"><font size="3"><strong>VDM
29/12/13 <br>
<font color="#FFFF00">(8x20)</font></strong></font></td>
<td align="center" valign="middle"><font size="3"><em><font color="#FFFF00"><strong>Programa HOMENAJE al sacerdote jesuita 'Jorge Loring'<br>
experto en el estudio de la Sábana Santa</strong></font></em></font></td>
</tr>
</table></td>
</tr>
<tr>
<td><p align="justify"><font size="2">Emisión <strong>Nº 332</strong> de "Voces del Misterio" del 29 de Diciembre de 2013. Un programa en el que rendiremos <font color="#FFFFCC"><em><strong>homenaje al sacerdote Jorge Loring</strong></em></font>, fallecido el 25 de Diciembre, día de Navidad. Una persona experta en el estudio y análisis de la <font color="#FFFFCC"><em><strong>Sábana Santa</strong></em></font>, cuyos conocimientos en esta materia eran altos y compartió muchas conferencias con grandes expertos como Eric Jumper, John Jackson, Tamburelli, etc... Hacemos una semblanza sobre su vida y una de sus conferencias sobre la Sábana Santa de Turín.</font></p>
<p align="justify"><font size="2">Un programa dirigido por <strong>Jesús
García</strong> y <strong>José Manuel García
Bautista</strong>.</font></p>
<div align="center">
<table border="0" cellpadding="0">
<tr>
<td width="24" height="24" align="center" valign="middle"><a href="http://www.mediafire.com/download/xvou06dcg5cczbs/VocesDelMisterio-291213.rar" target="_blank"><img src="descargar_MF2.gif" width="24" height="24" title="Descargar archivo desde MediaFire.com" border="0"></a></td>
<td width="24" height="24" align="center" valign="middle"><div align="center"><a href="http://www.ivoox.com/voces-del-misterio-29-12-13-n-332-audios-mp3_rf_2677481_1.html" target="_blank"><img src="descargar_iVoox.gif" width="24" height="24" title="Descargar archivo desde iVoox.com" border="0"></a></div></td>
<td width="24" height="24"><div align="center"><a href="http://archive.org/download/Vdm-Emision291213/VocesDelMisterio-291213.mp3" target="_blank"><img src="descargar_InternetArchive.gif" width="24" height="24" title="Para descargar este MP3 desde Internet Archive utiliza el botón derecho del ratón y seleccionar "Guardar destino como..."" border="0"></a></div></td>
<td width="290" bgcolor="#999999"><object data="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision291213/VocesDelMisterio-291213.mp3" type="application/x-shockwave-flash" height="24" width="290">
<param value="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision291213/VocesDelMisterio-291213.mp3" name="movie" />
<param value="high" name="quality" />
<param value="true" name="menu" />
<param value="transparent" name="wmode" />
</object></td>
</tr>
</table>
<strong><font color="#FFFFCC" size="2">(SUMARIO OBTENIDO DE <a href="http://www.vocesdelmisterio.com/" target="_blank">VOCES
DEL MISTERIO</a>)</font></strong></div></td>
</tr>
</table>
<br>
<table width="100%" border="1" cellpadding="0">
<tr>
<td><table width="100%" height="45" border="0" cellpadding="0">
<tr>
<td width="20%" align="center" valign="middle"><font size="3"><strong>VDM
27/12/13 <br>
<font color="#FFFF00">(8x19)</font></strong></font></td>
<td align="center" valign="middle"><font size="3"><em><font color="#FFFF00"><strong>Los
Misterios de la Navidad,<br>
Entrevista al perdiodista Luis Mariano Fernández</strong></font></em></font></td>
</tr>
</table></td>
</tr>
<tr>
<td><p align="justify"><font size="2">Programa "Voces del Misterio"
<strong>Nº 331</strong> del 27 de Diciembre de 2013. Hablamos
de <font color="#FFFFCC"><em><strong>los misterios, enigmas, simbología,
origen e Historia de la Navidad</strong></em></font>. Igualmente
mantendremos una gran <font color="#FFFFCC"><em><strong>entrevista
con el periodista malagueño Luis Mariano Fernández</strong></em></font>,
de temas de viajes, de misterio e investigaciones que te sorprenderán.</font></p>
<p align="justify"><font size="2">Un programa dirigido por <strong>Jesús
García</strong> y <strong>José Manuel García
Bautista</strong>.</font></p>
<div align="center">
<table border="0" cellpadding="0">
<tr>
<td width="24" height="24" align="center" valign="middle"><a href="http://www.mediafire.com/download/8esyexddt0igsna/VocesDelMisterio-271213.rar" target="_blank"><img src="descargar_MF2.gif" width="24" height="24" title="Descargar archivo desde MediaFire.com" border="0"></a></td>
<td width="24" height="24" align="center" valign="middle"><div align="center"><a href="http://www.ivoox.com/voces-del-misterio-27-12-13-n-331-audios-mp3_rf_2675938_1.html" target="_blank"><img src="descargar_iVoox.gif" width="24" height="24" title="Descargar archivo desde iVoox.com" border="0"></a></div></td>
<td width="24" height="24"><div align="center"><a href="http://archive.org/download/Vdm-Emision271213/VocesDelMisterio-271213.mp3" target="_blank"><img src="descargar_InternetArchive.gif" width="24" height="24" title="Para descargar este MP3 desde Internet Archive utiliza el botón derecho del ratón y seleccionar "Guardar destino como..."" border="0"></a></div></td>
<td width="290" bgcolor="#999999"><object data="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision271213/VocesDelMisterio-271213.mp3" type="application/x-shockwave-flash" height="24" width="290">
<param value="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision271213/VocesDelMisterio-271213.mp3" name="movie" />
<param value="high" name="quality" />
<param value="true" name="menu" />
<param value="transparent" name="wmode" />
</object></td>
</tr>
</table>
<strong><font color="#FFFFCC" size="2">(SUMARIO OBTENIDO DE <a href="http://www.vocesdelmisterio.com/" target="_blank">VOCES
DEL MISTERIO</a>)</font></strong></div></td>
</tr>
</table>
<table width="100%" border="1" cellpadding="0">
<tr>
<td><table width="100%" height="45" border="0" cellpadding="0">
<tr>
<td width="20%" align="center" valign="middle"><font size="3"><strong>VDM
26/12/13 <br>
<font color="#FFFF00">(8x18)</font></strong></font></td>
<td align="center" valign="middle"><font size="3"><em><font color="#FFFF00"><strong>Misterios
en el arte egipcio, Relación entre las Pirámides
y Orión,<br>
Misterios de Israel, Misterio de las Catedrales Góticas</strong></font></em></font></td>
</tr>
</table></td>
</tr>
<tr>
<td><p align="justify"><font size="2">Edición de "Voces
del Misterio" <strong>Nº 330</strong> del 26 de Diciembre
de 2013. Comenzaremos hablando de las <font color="#FFFFCC"><em><strong>relaciones
y misterios en el arte egipcio</strong></em></font>. Continuaremos
con Giza y el misterio de Orión, <font color="#FFFFCC"><em><strong>la
extraña relación que hay entre las pirámides
de Egipto y las estrellas de Orión</strong></em></font>.
Nos acercaremos a <font color="#FFFFCC"><em><strong>Israel</strong></em></font>
para hablar de los <font color="#FFFFCC"><em><strong>misterios
de Herodes, Masadá o la pasión de Cristo</strong></em></font>.
Y para finalizar, revisaremos <font color="#FFFFCC"><em><strong>el
misterio de las Catedrales Góticas</strong></em></font>,
qué se esconde en sus construcciones y por qué se
hicieron. Todo esto y mucho más aquí en "Voces
del Misterio", en <font color="#FF3300"><strong>SFC Radio
(91.6 FM)</strong></font>.</font></p>
<p align="justify"><font size="2">Un programa dirigido por <strong>Jesús
García</strong> y <strong>José Manuel García
Bautista</strong>.</font></p>
<div align="center">
<table border="0" cellpadding="0">
<tr>
<td width="24" height="24" align="center" valign="middle"><a href="http://www.mediafire.com/download/jil7nk7dew0p5f0/VocesDelMisterio-261213.rar" target="_blank"><img src="descargar_MF2.gif" width="24" height="24" title="Descargar archivo desde MediaFire.com" border="0"></a></td>
<td width="24" height="24" align="center" valign="middle"><div align="center"><a href="http://www.ivoox.com/voces-del-misterio-26-12-13-n-330-audios-mp3_rf_2673866_1.html" target="_blank"><img src="descargar_iVoox.gif" width="24" height="24" title="Descargar archivo desde iVoox.com" border="0"></a></div></td>
<td width="24" height="24"><div align="center"><a href="http://archive.org/download/Vdm-Emision261213/VocesDelMisterio-261213.mp3" target="_blank"><img src="descargar_InternetArchive.gif" width="24" height="24" title="Para descargar este MP3 desde Internet Archive utiliza el botón derecho del ratón y seleccionar "Guardar destino como..."" border="0"></a></div></td>
<td width="290" bgcolor="#999999"><object data="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision261213/VocesDelMisterio-261213.mp3" type="application/x-shockwave-flash" height="24" width="290">
<param value="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision261213/VocesDelMisterio-261213.mp3" name="movie" />
<param value="high" name="quality" />
<param value="true" name="menu" />
<param value="transparent" name="wmode" />
</object></td>
</tr>
</table>
<strong><font color="#FFFFCC" size="2">(SUMARIO OBTENIDO DE <a href="http://www.vocesdelmisterio.com/" target="_blank">VOCES
DEL MISTERIO</a>)</font></strong></div></td>
</tr>
</table>
<br>
<br>
<table width="100%" border="1" cellpadding="0">
<tr>
<td><table width="100%" height="45" border="0" cellpadding="0">
<tr>
<td width="20%" align="center" valign="middle"><font size="3"><strong>VDM
23/12/13 <br>
<font color="#FFFF00">(8x17)</font></strong></font></td>
<td align="center" valign="middle"><font size="3"><em><font color="#FFFF00"><strong>El
mundo del Misterio con José Luis Tajada,<br>
"El Club Bilderberg" con Cristina Martín</strong></font></em></font></td>
</tr>
</table></td>
</tr>
<tr>
<td><p align="justify"><font size="2">Edición de "Voces
del Misterio" <strong>Nº 329</strong> del 23 de Diciembre
de 2013. Un programa especial en el que hablaremos de dos temas
principales, entrevistamos de forma exclusiva a <strong>José
Luis Tajada</strong> sobre <font color="#FFFFCC"><em><strong>el
mundo del misterio, la Ciencia, los investigadores, la investigación</strong></em></font>...
Con <strong>Cristina Martín</strong> hablaremos de <strong><font color="#FFFFCC"><em>"El
Club Bilderberg"</em></font></strong>. Todo esto y mucho
más aquí en "Voces del Misterio", en <font color="#FF3300"><strong>SFC
Radio (91.6 FM)</strong></font>.</font></p>
<p align="justify"><font size="2">Un programa dirigido por <strong>Jesús
García</strong> y <strong>José Manuel García
Bautista</strong>.</font></p>
<div align="center">
<table border="0" cellpadding="0">
<tr>
<td width="24" height="24" align="center" valign="middle"><a href="http://www.mediafire.com/download/xtbuco5v2wvhss2/VocesDelMisterio-231213.rar" target="_blank"><img src="descargar_MF2.gif" width="24" height="24" title="Descargar archivo desde MediaFire.com" border="0"></a></td>
<td width="24" height="24" align="center" valign="middle"><div align="center"><a href="http://www.ivoox.com/voces-del-misterio-23-12-13-n-329-audios-mp3_rf_2669452_1.html" target="_blank"><img src="descargar_iVoox.gif" width="24" height="24" title="Descargar archivo desde iVoox.com" border="0"></a></div></td>
<td width="24" height="24"><div align="center"><a href="http://archive.org/download/Vdm-Emision231213/VocesDelMisterio-231213.mp3" target="_blank"><img src="descargar_InternetArchive.gif" width="24" height="24" title="Para descargar este MP3 desde Internet Archive utiliza el botón derecho del ratón y seleccionar "Guardar destino como..."" border="0"></a></div></td>
<td width="290" bgcolor="#999999"><object data="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision231213/VocesDelMisterio-231213.mp3" type="application/x-shockwave-flash" height="24" width="290">
<param value="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision231213/VocesDelMisterio-231213.mp3" name="movie" />
<param value="high" name="quality" />
<param value="true" name="menu" />
<param value="transparent" name="wmode" />
</object></td>
</tr>
</table>
<strong><font color="#FFFFCC" size="2">(SUMARIO OBTENIDO DE <a href="http://www.vocesdelmisterio.com/" target="_blank">VOCES
DEL MISTERIO</a>)</font></strong></div></td>
</tr>
</table>
<br>
<table width="100%" border="1" cellpadding="0">
<tr>
<td><table width="100%" height="45" border="0" cellpadding="0">
<tr>
<td width="20%" align="center" valign="middle"><font size="3"><strong>VDM
20/12/13 <br>
<font color="#FFFF00">(8x16)</font></strong></font></td>
<td align="center" valign="middle"><font size="3"><em><font color="#FFFF00"><strong>Noticias,
Relatos de terror y misterio por Navidad,<br>
"Autopista del misterio" con Bruño Cardeñosa</strong></font></em></font></td>
</tr>
</table></td>
</tr>
<tr>
<td><p align="justify"><font size="2">Programa "Voces del Misterio"
<strong>Nº 328</strong>. Comenzaremos con nuestras habituales
<font color="#FFFFCC"> <em> <strong>noticias del misterio</strong></em></font>.
Es un programa especial en el que hablamos de <font color="#FFFFCC"><em><strong>relatos
de terror en Navidad</strong></em></font>. Comienzan <strong>Carmen
Bravo</strong> y <strong>Lorenzo Cabezas</strong> con "El
último fin de año" y "Para siempre".
<strong>Ismael cabeza</strong> nos narra "Cuento de Dickens",
<strong>Pepe Cabello</strong> un relato llamado "El señor
Judas", <strong>David Flores</strong> "El diablo del
espejo", <strong>Juan José Luque</strong> nos hablará
de <strong><font color="#FFFFCC"><em>Lev Termen y Proyecto 327</em></font></strong>.
<strong>José Apolo</strong> de "La Tregua de Navidad",
despediremos el programa entrevistando a <strong>Bruno Cardeñosa</strong>
sobre <strong><font color="#FFFFCC"><em>"Autopista del misterio"</em></font></strong>,
su último libro para Libros Cúpula. No os lo perdáis,
en <font color="#FF3300"><strong>SFC Radio (91.6 FM)</strong></font>.</font></p>
<p align="justify"><font size="2">Un programa dirigido por <strong>Jesús
García</strong> y <strong>José Manuel García
Bautista</strong>.</font></p>
<div align="center">
<table border="0" cellpadding="0">
<tr>
<td width="24" height="24" align="center" valign="middle"><a href="http://www.mediafire.com/download/3uf8ree96l7s62b/VocesDelMisterio-201213.rar" target="_blank"><img src="descargar_MF2.gif" width="24" height="24" title="Descargar archivo desde MediaFire.com" border="0"></a></td>
<td width="24" height="24" align="center" valign="middle"><div align="center"><a href="http://www.ivoox.com/voces-del-misterio-20-12-13-n-328-audios-mp3_rf_2663204_1.html" target="_blank"><img src="descargar_iVoox.gif" width="24" height="24" title="Descargar archivo desde iVoox.com" border="0"></a></div></td>
<td width="24" height="24"><div align="center"><a href="http://archive.org/download/Vdm-Emision201213/VocesDelMisterio-201213.mp3" target="_blank"><img src="descargar_InternetArchive.gif" width="24" height="24" title="Para descargar este MP3 desde Internet Archive utiliza el botón derecho del ratón y seleccionar "Guardar destino como..."" border="0"></a></div></td>
<td width="290" bgcolor="#999999"><object data="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision201213/VocesDelMisterio-201213.mp3" type="application/x-shockwave-flash" height="24" width="290">
<param value="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision201213/VocesDelMisterio-201213.mp3" name="movie" />
<param value="high" name="quality" />
<param value="true" name="menu" />
<param value="transparent" name="wmode" />
</object></td>
</tr>
</table>
<strong><font color="#FFFFCC" size="2">(SUMARIO OBTENIDO DE <a href="http://www.vocesdelmisterio.com/" target="_blank">VOCES
DEL MISTERIO</a>)</font></strong></div></td>
</tr>
</table>
<br>
<table width="601" border="1" cellpadding="0">
<tr>
<td height="21"><div align="center"><strong><font color="#FFFF00" size="3"><em>ESPECIAL
Homenaje a Gustavo Adolfo Bécquer, vida y misterios</em></font></strong></div></td>
</tr>
<tr>
<td><div align="justify">
<p><font size="2">Programa ESPECIAL de "Voces del Misterio"
que estuvo en el <font color="#FFFFCC"><em><strong>HOMENAJE
a la figura de Gustavo Adolfo Becquer</strong></em></font> en
el Panteón de Sevillanos Ilustres de la encantada Facultad
de Bellas Artes de Sevilla. Un especial donde se explica quienes
están enterrados allí, la vida de Gustavo Adolfo
Bécquer, los fenómenos paranormales en la Facultad
y se interpretará un pasaje de la novela de Antonio Puente
Mayor "La sombra de Bécquer". Un evento organizado
por <strong>Antonio Puente Mayor</strong>.</font></p>
<p><font size="2"><em>Ocasionalmente puede bajar la intensidad
del audio debido al movimiento del narrador durante la ruta,
no obstante espero que disfruten del audio</em>.</font></p>
<p><font size="2">Un programa dirigido por <strong>Jesús
García</strong> y <strong>José Manuel García
Bautista</strong>.</font></p>
<div align="center">
<table border="0" cellpadding="0">
<tr>
<td width="30" height="30" align="center" valign="middle" bgcolor="#333333"><a href="http://www.ivoox.com/voces-del-misterio-especial-homenaje-a-gustavo-adolfo-audios-mp3_rf_2654130_1.html" target="_blank"><img src="descargar_iVoox.gif" width="24" height="24" title="Descargar este audio desde iVoox.com" border="0"></a></td>
<td height="30" align="center" valign="middle"><object width="173" height="30" type="application/x-shockwave-flash" data="http://www.ivoox.com/playerivoox_ep_2654130_1.html">
<param name="movie" value="http://www.ivoox.com/playerivoox_ep_2654130_1.html">
<param name="allowFullScreen" value="true">
<param name="wmode" value="transparent">
<embed src="http://www.ivoox.com/playerivoox_ep_2654130_1.html" type="application/x-shockwave-flash" allowfullscreen="true" wmode="transparent" width="173" height="30"></embed>
</object></td>
</tr>
</table>
<strong><font color="#FFFFCC" size="2">(SUMARIO OBTENIDO DE
<a href="http://www.vocesdelmisterio.com/" target="_blank">VOCES
DEL MISTERIO</a>)</font></strong></div>
</div></td>
</tr>
</table>
<br>
<table width="100%" border="1" cellpadding="0">
<tr>
<td><table width="100%" height="45" border="0" cellpadding="0">
<tr>
<td width="20%" align="center" valign="middle"><font size="3"><strong>VDM
13/12/13 <br>
<font color="#FFFF00">(8x15)</font></strong></font></td>
<td align="center" valign="middle"><font size="3"><em><font color="#FFFF00"><strong>Noticias,
Vampira Elizabeth Bathory, Albert Einstein, Meteoritos,<br>
Investigaciones en vivo (palacio encantado, ente agresivo)</strong></font></em></font></td>
</tr>
</table></td>
</tr>
<tr>
<td><p align="justify"><font size="2">Programa "Voces del Misterio"
Nº 327 en el que abriremos con nuestras habituales <font color="#FFFFCC"><em><strong>noticias
del misterio</strong></em></font>. Continuaremos hablando de <font color="#FFFFCC"><em><strong>la
"vampira" Elizabeth Bathory</strong></em></font>, de
<font color="#FFFFCC"> <em> <strong>los misterios de Albert Einstein</strong></em></font>,
de <font color="#FFFFCC"><em><strong>la amenzaza exterior y el
fin del mundo</strong></em></font>, conectamos con dos puntos
donde se están llevando investigaciones paranormales, una
<font color="#FFFFCC"><strong><em>casa con un ente agresivo</em></strong></font>
y un <font color="#FFFFCC"><em><strong>antiguo palacio encantado</strong></em></font>
(investigación en vivo) y entrevistamos a <strong>Lorenzo
Fernández Bueno</strong> sobre su nuevo libro <strong><font color="#FFFFCC"><em>"El
vampiro de Silesia"</em></font></strong> (Libros Cúpula).
No os lo perdáis, en <font color="#FF3300"><strong>SFC
Radio (91.6 FM)</strong></font>.</font></p>
<p align="justify"><font size="2">Un programa dirigido por <strong>Jesús
García</strong> y <strong>José Manuel García
Bautista</strong>.</font></p>
<div align="center">
<table border="0" cellpadding="0">
<tr>
<td width="24" height="24" align="center" valign="middle"><a href="http://www.mediafire.com/download/nlttwrc5ym1g5z2/VocesDelMisterio-131213.rar" target="_blank"><img src="descargar_MF2.gif" width="24" height="24" title="Descargar archivo desde MediaFire.com" border="0"></a></td>
<td width="24" height="24" align="center" valign="middle"><div align="center"><a href="http://www.ivoox.com/voces-del-misterio-13-12-13-n-327-audios-mp3_rf_2643510_1.html" target="_blank"><img src="descargar_iVoox.gif" width="24" height="24" title="Descargar archivo desde iVoox.com" border="0"></a></div></td>
<td width="24" height="24"><div align="center"><a href="http://archive.org/download/Vdm-Emision131213/VocesDelMisterio-131213.mp3" target="_blank"><img src="descargar_InternetArchive.gif" width="24" height="24" title="Para descargar este MP3 desde Internet Archive utiliza el botón derecho del ratón y seleccionar "Guardar destino como..."" border="0"></a></div></td>
<td width="290" bgcolor="#999999"><object data="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision131213/VocesDelMisterio-131213.mp3" type="application/x-shockwave-flash" height="24" width="290">
<param value="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision131213/VocesDelMisterio-131213.mp3" name="movie" />
<param value="high" name="quality" />
<param value="true" name="menu" />
<param value="transparent" name="wmode" />
</object></td>
</tr>
</table>
<strong><font color="#FFFFCC" size="2">(SUMARIO OBTENIDO DE <a href="http://www.vocesdelmisterio.com/" target="_blank">VOCES
DEL MISTERIO</a>)</font></strong></div></td>
</tr>
</table>
<br>
<table width="100%" border="1" cellpadding="0">
<tr>
<td><table width="100%" height="45" border="0" cellpadding="0">
<tr>
<td width="20%" align="center" valign="middle"><font size="3"><strong>VDM
06/12/13 <br>
<font color="#FFFF00">(8x14)</font></strong></font></td>
<td align="center" valign="middle"><font size="3"><em><font color="#FFFF00"><strong>Las
piedras azules del cielo, Ablandadores de piedras,<br>
Máquinas anatómicas de Raimondo Di Sangro, Misterios de la Biblia</strong></font></em></font></td>
</tr>
</table></td>
</tr>
<tr>
<td><p align="justify"><font size="2">Programa "Voces del Misterio" Nº 326 del 6 de Diciembre de 2013. Un programa ESPECIAL en el que vamos a tocar cuatro temas de forma monográfica: <font color="#FFFFCC"><em><strong>las piedras del cielo</strong></em></font>, unas misteriosas piedras de composición imposible halladas en África. Los <font color="#FFFFCC"><em><strong>ablandadores de piedra</strong></em></font> y la construcción de pirámides o muros de antiguas culturas. Las <font color="#FFFFCC"><em><strong>máquinas anatómicas de Raimondo Di Sangro</strong></em></font>, el alquimista que petrificó a dos personas que se pueden contemplar en la ciudad italiana de Nápoles. Finalmente hablamos de los <font color="#FFFFCC"><em><strong>textos de la Biblia</strong></em></font> y la posible relación con civilizaciones o culturas llegadas más allá de nuestro planeta. No os lo perdáis, en <font color="#FF3300"><strong>SFC Radio (91.6 FM)</strong></font>.</font></p>
<p align="justify"><font size="2">Un programa dirigido por <strong>Jesús
García</strong> y <strong>José Manuel García
Bautista</strong>.</font></p>
<div align="center">
<table border="0" cellpadding="0">
<tr>
<td width="24" height="24" align="center" valign="middle"><a href="http://www.mediafire.com/download/e12ellzsef996kq/VocesDelMisterio-061213.rar" target="_blank"><img src="descargar_MF2.gif" width="24" height="24" title="Descargar archivo desde MediaFire.com" border="0"></a></td>
<td width="24" height="24" align="center" valign="middle"><div align="center"><a href="http://www.ivoox.com/voces-del-misterio-06-12-13-n-326-audios-mp3_rf_2622249_1.html" target="_blank"><img src="descargar_iVoox.gif" width="24" height="24" title="Descargar archivo desde iVoox.com" border="0"></a></div></td>
<td width="24" height="24"><div align="center"><a href="http://archive.org/download/Vdm-Emision061213/VocesDelMisterio-061213.mp3" target="_blank"><img src="descargar_InternetArchive.gif" width="24" height="24" title="Para descargar este MP3 desde Internet Archive utiliza el botón derecho del ratón y seleccionar "Guardar destino como..."" border="0"></a></div></td>
<td width="290" bgcolor="#999999"><object data="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision061213/VocesDelMisterio-061213.mp3" type="application/x-shockwave-flash" height="24" width="290">
<param value="playerwpress.swf?
soundFile=http://archive.org/download/Vdm-Emision061213/VocesDelMisterio-061213.mp3" name="movie" />
<param value="high" name="quality" />
<param value="true" name="menu" />
<param value="transparent" name="wmode" />
</object></td>
</tr>
</table>
<strong><font color="#FFFFCC" size="2">(SUMARIO OBTENIDO DE <a href="http://www.vocesdelmisterio.com/" target="_blank">VOCES
DEL MISTERIO</a>)</font></strong></div></td>
</tr>
</table>
<br>
<table width="601" border="1" cellpadding="0">
<tr>
<td height="21"><div align="center"><strong><font color="#FFFF00" size="3"><em>ESPECIAL
Misterios con Jesús Callejo</em></font></strong></div></td>
</tr>
<tr>
<td><div align="justify">
<p><font size="2">Audio inédito</font><font size="2"> en
el que se habla de <font color="#FFFFCC"><em><strong>misterios</strong></em></font>
con <strong>Jesús Callejo</strong>. Además con
<strong>Jordi Fernández</strong>, <strong>Jesús
Conejero</strong> y <strong>José Manuel García
Bautista</strong> se tratarán otros temas relacionados.</font></p>
<p><font size="2">Un programa dirigido por <strong>Jesús
García</strong> y <strong>José Manuel García
Bautista</strong>.</font></p>
<div align="center">
<table border="0" cellpadding="0">
<tr>
<td width="30" height="30" align="center" valign="middle" bgcolor="#333333"><a href="http://www.ivoox.com/voces-del-misterio-especial-misterios-jesus-callejo-audios-mp3_rf_2613995_1.html" target="_blank"><img src="descargar_iVoox.gif" width="24" height="24" title="Descargar este audio desde iVoox.com" border="0"></a></td>
<td height="30" align="center" valign="middle"><object width="173" height="30" type="application/x-shockwave-flash" data="http://www.ivoox.com/playerivoox_ep_2613995_1.html">
<param name="movie" value="http://www.ivoox.com/playerivoox_ep_2613995_1.html">
<param name="allowFullScreen" value="true">
<param name="wmode" value="transparent">
<embed src="http://www.ivoox.com/playerivoox_ep_2613995_1.html" type="application/x-shockwave-flash" allowfullscreen="true" wmode="transparent" width="173" height="30"></embed>
</object></td>
</tr>
</table>
<strong><font color="#FFFFCC" size="2">(SUMARIO OBTENIDO DE <a href="http://www.vocesdelmisterio.com/" target="_blank">VOCES
DEL MISTERIO</a>)</font></strong></div>
</div></td>
</tr>
</table>
</td>
</tr>
</table>
<table width="606" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="40" valign="bottom">
<div align="center"><strong><a href="javascript:window.close();"><img src="cerrar1.jpg" title="Cerrar esta Ventana" name="Image1" width="134" height="30" border="0" id="Image1" onMouseOver="MM_swapImage('Image1','','cerrar2.jpg',1)" onMouseOut="MM_swapImgRestore()"></a></strong></div></td>
</tr>
</table>
</div>
</body>
</html>