/*****************************************************************************
Scroll de noticias. Script creado por Tunait! (21/8/2003)
Última modificación 27/3/04 se añade la opción de omitir las fechas
Si quieres usar este script en tu sitio eres libre de hacerlo con la condición de que permanezcan intactas estas líneas, osea, los créditos.
No autorizo a publicar y ofrecer el código en sitios de script sin previa autorización
Si quieres publicarlo, por favor, contacta conmigo.
http://javascript.tunait.com/
tunait@yahoo.com 
******************************************************************************/
var ancho = 273 //anchura del cuadro
var alto = 159 //altura del cuadro
var marco = 0 //0 para que notenga marco (borde)
var fondo = '#FFFFFF' //color de fondo del cuadro
var pausilla = 2000 //tiempo de la pausa en milisegundos (2000 = 2 segundos)
var destino = "_blank" //target en donde se quiera que se carguen los enlaces, en caso de usarlos.
var cursor = "default;"  //cursor que se quiera sobre el cuadro
var colTitular = '#006699' //color del texto del titular
var colTexto = '#999999' // color del texto de la noticia
var colFecha = '#3399FF' //color del texto de la fecha
var colEnlace = '#660000' //color del texto del enlace
var fuente = "arial" //fuente para los textos 
var tamTitular = '14' //tamaño de la fuente del titular
var tamTexto = '12' //tamaño de la fuente del texto de la noticia
var tamFecha = '10' // tamaño de la fuente de la fecha
var tamEnlace = '11' // tamaño de la fuente del enlace 
var masInfo = true //Determina si se usa o no el enlace. true para usarlo. false para omitirlo
var poneFecha = true //true para poner fecha. false para omitirla. Si no se quiere fecha, dejar las comillas vacías ""

function noticia(titular,texto,fecha,enlace,destino){
	this.titular = titular
	this.texto = texto
	this.fecha= fecha
	this.enlace = enlace
	this.destino = destino
}
var noticias = new Array()

noticias[0]= new noticia("American scientists are able to regenerate nervous fibers after an injury. ", "MADRID. - Investigators of the University of Michigan and the Johns Hopkins (both in the United States) have managed to regenerate the nervous completions of the spinal marrow","18/07/06"," http://www.elmundo.es/elmundosalud/2006/07/17/biociencia/1153162526.html ","_blank")
noticias[1]= new noticia("Amelie Mauresmo, number one of the world, proclaims champion of Wimbledon. ", "the tennis player number one of the world, the French Amelie Mauresmo, today proclaimed champion of Wimbledon, after winning in the end to the Belgian Justine Henin-Hardenne by 2-6, 6-3 and","08/07/06"," http://www.20minutos.es/noticia/139206/0/mauresmo/final/wimbledon/ ","_blank")
noticias[2]= new noticia("A woman of 62 gives to light in the United Kingdom. ", "a Briton of 62 years, put under a treatment of attended fertilization, has become the woman of the United Kingdom that is mother with greater age, after giving to light to a boy in a clinic of the south of ","08/07/06"," http://www.20minutos.es/noticia/139195/0/madre/62/anos/anciana/ ","_blank")
noticias[3]= new noticia("Civil defense alert to seven communities of a heat wave that begins Sunday. ", "MADRID. - The Main directorate of Protection Civil and Emergencias has alerted to Madrid, Castilla-La Mancha, Galicia, Extremadura, Asturias, Cantabria, Andalusia and ","08/07/06"," http://www.elmundo.es/elmundo/2006/07/08/espana/1152369987.html ","_blank")
noticias[4]= new noticia("Two astronauts of the “Discovery” realize his first space long walk. ", "WASHINGTON. - Two astronauts of the Discovery ferry abandoned the ship for the first space long walk of the mission of supplying of the Space station the International.","08/07/06"," http://www.elmundo.es/elmundo/2006/07/08/ciencia/1152373030.html ","_blank")
noticias[5]= new noticia("New teeth in only one hour and without bistoury. ", "the new tools of the dentist are a scanner, a virtual surgical simulator and an anatomical group. With them the operation of implants program very millimetrically being annulled the possibility of ","08/07/06"," http://www.elmundo.es/suplementos/salud/2006/671/1152309613.html ","_blank")
noticias[6]= new noticia("`Ferrari' born in the country of the ice. ", "There are lucky people for which to have a Ferrari it is not sufficient, and others like the Swedish Christian Koenigsegg that are happy constructing those sport hyperexclusive ones. The channel of motor of elmundo.es has had  ","08/07/06"," http://elmundomotor.elmundo.es/elmundomotor/2006/07/07/coches/1152273912.html ","_blank")
noticias[7]= new noticia("International call to restrain the extinction of the amphibians. ", "MADRID. - A fifty of scientists has insisted to the international community to take urgent measures to avoid the extinction of the amphibians, whose declivity is seen like an indication of  ","08/07/06"," http://www.elmundo.es/elmundo/2006/07/07/ciencia/1152286179.html ","_blank")

var det = false
function escribe(){
document.write ('<div id="mami" style="width:' + ancho + 'px; height:' + alto + 'px; position:relative;  overflow:hidden ">')
document.write('<table bgcolor="' + fondo + '" border = "' + marco + '" width="' + ancho + 'px" height="100%"><tr><td valign="top">')
document.write ('<div id="uno" style="top:' + alto +'px; width:' + ancho + 'px; height:' + alto + 'px;  ">')
document.write ('<div class="titular">')
document.write (noticias[0].titular)
document.write ('</div>')
document.write ('<div class="fecha">')
document.write (noticias[0].fecha)
document.write ('</div>')
document.write ('<div class="texto">')
document.write (noticias[0].texto)
document.write ('</div>')
if(masInfo == true){
	document.write ('<a class="enlace" href="')
	document.write (noticias[0].enlace)
	document.write ('" target="' + destino + '">more information...</a>')
	}
document.write ('</div>')
document.write ('<div id="dos" style="top:' + (alto*2) +'px; width:' + ancho + 'px; height:' + alto + 'px; ">')
document.write ('<div class="titular">')
document.write (noticias[1].titular)
document.write ('</div>')
document.write ('<div class="fecha">')
document.write (noticias[1].fecha)
document.write ('</div>')
document.write ('<div class="texto">')
document.write (noticias[1].texto)
document.write ('</div>')
if(masInfo == true){
	document.write ('<a class="enlace" href="')
	document.write (noticias[1].enlace)
	document.write ('" target = "' + destino + '">more information...</a>')
	}
document.write ('</div>')
document.write('</td></tr></table>')
document.write ('</div>')
if(navigator.appName == "Netscape")
{altoUno = document.getElementById('uno').offsetHeight}
else
{altoUno = document.getElementById('uno').clientHeight}
document.getElementById('uno').onmouseover =function(){
	det = true
	clearTimeout(tiempo)
	}
document.getElementById('uno').onmouseout =function(){
	det = false;
	clearTimeout(tiempo)
	escrolea()
	}

document.getElementById('dos').onmouseover =function(){
	det = true
	clearTimeout(tiempo)
	}
document.getElementById('dos').onmouseout =function(){
	det = false;
	clearTimeout(tiempo)
	 escrolea()
	 
	}
}
desp = 1
var cont = 1
var pos,pos2
function escrolea(){
pos = document.getElementById('uno').style.top
pos = pos.replace(/px/,"");
pos = pos.replace(/pt/,"");
pos = new Number(pos);
pos2 = document.getElementById('dos').style.top
pos2 = pos2.replace(/px/,"");
pos2 = pos2.replace(/pt/,"");
pos2 = new Number(pos2);
pos -= desp
pos2 -= desp

if (pos == desp){
	var contenidos = ""
	document.getElementById('dos').style.top = alto + "px"
	document.getElementById('dos').childNodes[0].firstChild.nodeValue  = noticias[cont].titular
	if(poneFecha == true){
	document.getElementById('dos').childNodes[1].firstChild.nodeValue  = noticias[cont].fecha
	}
	document.getElementById('dos').childNodes[2].firstChild.nodeValue  = noticias[cont].texto
	if(masInfo == true){
		document.getElementById('dos').childNodes[3].href = noticias[cont].enlace 
	}
	document.getElementById('uno').style.top = 0
	if(cont == noticias.length-1)
		{cont=0}
	else{
		cont++
		}
	pausa()
	return false
	}
else{
	if (pos2 == desp){
		var contenidos = ""
		document.getElementById('uno').style.top = alto + "px"
		document.getElementById('uno').childNodes[0].firstChild.nodeValue  = noticias[cont].titular
		if(poneFecha == true){
		document.getElementById('uno').childNodes[1].firstChild.nodeValue  = noticias[cont].fecha
		}
		document.getElementById('uno').childNodes[2].firstChild.nodeValue  = noticias[cont].texto
		if(masInfo == true){
		document.getElementById('uno').childNodes[3].href  = noticias[cont].enlace
		}
		document.getElementById('dos').style.top = 0
		if(cont == noticias.length-1)
		{cont=0}
	else{
		cont++
		}
		pausa()
		return false
		}
	else{
		document.getElementById('uno').style.top = pos + "px"
		document.getElementById('dos').style.top = pos2 + "px"
		}
	}
tiempo = window.setTimeout('escrolea()',50)
}
var tiempo
function pausa()
{
clearTimeout(tiempo)
if (det == false){
	tiempo = setTimeout ('continuar()',2000)
	}
}
function continuar()
{
if(det == false)
	{escrolea()}
}

document.write('<style type="text/css">')
document.write ('#uno {')
document.write ('color: #006699;')
if(cursor == "pointer" || cursor == "hand"){
cursor = (navigator.appName == "Netscape")?'pointer;':'hand;';
}
document.write ('cursor:' + cursor + ";")
document.write ('position:absolute;}')
document.write ('#dos {')
document.write ('color: #006699;')
document.write ('cursor:' + cursor + ";")
document.write ('position:absolute;}')
document.write ('.titular{')
document.write ('color:' + colTitular +';')
document.write ('font-family:' + fuente + ';')
document.write ('font-size :' + tamTitular + 'px;font-weight:bold}')
document.write ('.texto{')
document.write ('color:' + colTexto + ';')
document.write ('font-family:' + fuente + ';')
document.write ('font-size:' + tamTexto + 'px;}')
if(poneFecha == true){
document.write ('.fecha{')
document.write ('color:' + colFecha +';')
document.write ('font-family:' + fuente + ';')
document.write ('font-size :' + tamFecha + 'px;font-weight:bold}')
}
else{
document.write ('.fecha{display: none;}')
}
document.write ('.enlace{')
document.write ('color:' + colEnlace + ';')
document.write ('font-family:' + fuente + ';')
document.write ('font-size:' + tamEnlace + 'px;}')
document.write ('</style>')

/*      http://www.youtube.com/watch?v=-z022rxg0fs Michael ballack
	http://www.youtube.com/watch?v=ZCU6q1CryAc Rafael Nadal
        http://www.youtube.com/watch?v=Beq3eZmc8N4 Miroslav Klose
        http://www.youtube.com/watch?v=7gH-0YWJMS8 Carolina Kluft
        http://www.youtube.com/watch?v=Ftsw7doaYUI Pau Gasol
        http://www.youtube.com/watch?v=VyBcR_5h5C0 Fernando Alonso 
        http://www.youtube.com/watch?v=kHy5AIByh0U Ruud Van Nistelrooy
	http://www.youtube.com/watch?v=fCiVpIiXLc0 Fernando Morientes	*/


function titularvideo_e()	{
	document.write('<TABLE width="280" height="317" cellpadding="0" cellspacing="0" border="0" bordercolor="yellow" bgcolor="#FFFFFF" align="center"><tr><td colspan="2" style="padding-bottom:3px; padding-right:2px; padding-top:0px; padding-left:10px;" align="left">')
	document.write('<a href=" http://uk.eurosport.yahoo.com/17082008/58/beijing-2008-stunning-nadal-wins-olympic-gold.html " target="_blank" class="newstitle">') 

	document.write('<span style="color:black">Nadal Olympic Champion</span></a></td></tr><tr><td colspan="2" style="padding-bottom:3px; padding-right:2px; padding-top:0px; padding-left:10px;" align="left">')
	document.write('<a href=" http://uk.eurosport.yahoo.com/17082008/58/beijing-2008-stunning-nadal-wins-olympic-gold.html " target="_blank">')
/*                                                        1         2         3         4         5         6         7         8         9         0         1         2         3         4         5         6         7         8        *9         0         1         2         3  */
/*                                               123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901 */
	document.write('<span style="color:black">BEIJING. - Rafa Nadal did not fail, it waited for it to nobody and it did not do it. In the fourth opportunity which it had, it crowned a magnificent day for the Spanish sport and it already can be conceited to be the new Olympic champion of tennis, after removing from the track to the Chilean Fernando González (6-3, 7-6 (2) and 6-3) in two hours and 22 minutes. It was thrown to the ground, it tightened the fists, it greeted his rival and one went until the zone where it was the majority of the Spanish public, among them many of his companions in the Olympic town. Its dream had been</span></a>') 
	document.write('</td></tr>')	
	document.write('<tr><td style="padding-bottom:0px; padding-right:0px; padding-top:0px;" align="left" bgcolor="#000000">')
	document.write('<table width="176" border="0" cellpadding="0" cellspacing="0" border="0" bgcolor="#000000"><tr><td><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="176" height="128" id="FLVPlayer">')
	document.write('<param name="movie" value="FLVPlayer_Progressive.swf" />')
	document.write('<param name="salign" value="lt" />')
	document.write('<param name="quality" value="high" />')
	document.write('<param name="scale" value="noscale" />')
	document.write('<param name="bgcolor" value="#000000" />')
	document.write('<param name="FlashVars" value="&skinName=clearSkin_1&streamName=videos/interview&autoPlay=false&autoRewind=true" />')
	document.write('<embed src="FLVPlayer_Progressive.swf" flashvars="&skinName=clearSkin_1&streamName=videos/interview&autoPlay=false&autoRewind=true" quality="high" scale="noscale" bgcolor="#FFFFFF" width="176" height="128" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />')
	document.write('</object></td></tr></table>')
	document.write('</td><td width="900" height="120" style="padding-bottom:0px; padding-right:0px; padding-top:0px;" align="center" valign="top" bgcolor="#FFFFFF">')
/*                                                        1         2         3         4         5         6         7         8         9         0         1        *2         3         4         5         6         7         8        *9         0         1         2         3  */
/*                                               123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901 */	
  document.write('<TABLE width="100%" height="100%" cellpadding="0" cellspacing="0" border="0" bordercolor="red" bgcolor="#FFFFFF" align="center"><tr><td align="center">') 
	document.write('<span style="color:#1367AE"><a href=" http://uk.eurosport.yahoo.com/ " target="_blank"><img src="img/home/logoeurosport89.gif" alt="" border="0"></a></span>')
  document.write('<tr><td bgcolor="#FFFFFF" align="center">') 
	document.write('<span style="color:#1367AE"><a href=" http://www.olympic.org/ " target="_blank"><img src="img/home/jjoo89x46.png" alt="" border="0"></a></span>')
  document.write('</td></tr></table>')
	document.write('</td></tr>') 
	document.write('</table>')
}

function titular_e()	{
	document.write('<TABLE width="280" height="317" cellpadding="0" cellspacing="0" border="0" bordercolor="yellow" bgcolor="#FFFFFF" align="left"><tr><td colspan="2" style="padding-bottom:0px; padding-right:0px; padding-top:0px; padding-left:0px;" align="left">')
	document.write('<a href=" http://news.bbc.co.uk/sport2/hi/motorsport/formula_one/8280566.stm " target="_blank" class="newstitle">') 
/* titulo */
/*	document.write('<span style="color:black">Fernando Alonso piloto de Ferrari en el 2010</span></a></td></tr>') */
 	document.write('<div class="content-w"><div class="content"><div class="entries"><div class="entry"><h3><a href=" http://news.bbc.co.uk/sport2/hi/motorsport/formula_one/8280566.stm " target="_blank">Fernando Alonso will race for Ferrari in 2010</a></h3></div></div></div></div></a></td></tr>') 
	document.write('<tr><td colspan="2" style="padding-bottom:0px; padding-right:0px; padding-top:0px; padding-left:0px;" align="left">')
	document.write('<a href=" http://news.bbc.co.uk/sport2/hi/motorsport/formula_one/8280566.stm " target="_blank">')
/* titulo */
/*                                                                                                                                                                                                                         1         1        *1         1         1         1         1         1         1        *1         2         2         2         2         2         2         2         2         2        *2         3         3         3         3         3         3         3         3         3        *3         4         4         4         4         4         4         4         4         4        *4         5         5         5         5         5         5         5         5         5        *5         6         6         6         6         6         6         6         6         6        *6         7         7         7         7         7         7         7         7 */
/*                                                                                                                               1         2         3         4         5         6         7         8         9         0         1        *2         3         4         5         6         7         8        *9         0         1         2         3         4         5         6         7         8        *9         0         1         2         3         4         5         6         7         8        *9         0         1         2         3         4         5         6         7         8        *9         0         1         2         3         4         5         6         7         8        *9         0         1         2         3         4         5         6         7         8        *9         0         1         2         3         4         5         6         7 */
/*                                                                                                                      12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 */	
/*	document.write('<span style="color:black">MONTMELÓ.- El piloto alemán de Williams, Nico Rosberg, marcó el mejor registro de la segunda tanda entrenamientos libres para el Gran Premio de España de Fórmula 1, con su compañero, el japonés Kazuki Nakajima en la segunda posición, y en la que Fernando Alonso (Renault) mejoró su decimoséptimo puesto de la primera tanda para colarse en la tercera posición en la última.Al dominio ejercido por Jenson Button (Brawn GP) de la primera sesión, se pasó al de los Williams, que ya habían dado muestra de su potencial por la mañana. Alonso mejoró y estuvo cerca de los mejores, superando a los Brawn GP y los Toyota, muy discretos, mientras que Ferrari y McLaren-Mercedes siguen sin levantar la cabeza.</span></a>') */
	document.write('<div class="content-w"><div class="content"><div class="entries"><div class="entry"><div class="body">Ferrari have announced that double world champion Fernando Alonso will join them for 2010 from Renault, with Kimi Raikkonen making way.<br>Ferrari said the Spaniard had signed a three-year contract and that he would partner Brazilian Felipe Massa. "Driving a single-seater for the Prancing Horse is everybody"s dream in F1, and now I have the chance to make this dream come true," said Alonso.<br>The 28-year-old said the move had been brought forward by a year. Alonso"s switch to Ferrari had been the worst-kept secret in F1, and the announcement is likely to trigger a string of driver</div></div></div></div></div></a>') 
	document.write('</td></tr>')	
	document.write('<tr><td style="padding-bottom:0px; padding-right:0px; padding-top:0px;" align="center" valign="top" bgcolor="#FFFFFF">')
  document.write('<table cellpadding="0" cellspacing="0" border="0" bordercolor="red" bgcolor="#FFFFFF" align="center"><tr><td align="left">') 
	document.write('<span style="color:#1367AE"><a href=" http://es.eurosport.yahoo.com/ " target="_blank"><img src="img/home/logoeurosport89.gif" alt="" border="0"></a></span>')
  document.write('</td><td bgcolor="#FFFFFF" align="center">') 
	document.write('<span style="color:#1367AE"><a href=" http://www.olympic.org/ " target="_blank"><img src="img/home/jjoo89x46.png" alt="" border="0"></a></span>')
  document.write('</td><td bgcolor="#FFFFFF" align="center">') 
	document.write('<span style="color:#1367AE"><a href=" http://www.vh1.com/ " target="_blank">    <img src="img/home/vh1.png" alt="" border="0"></a></span>')
  document.write('</td></tr></table>')
	document.write('</td></tr>') 
	document.write('</TABLE>')
	
}

function healthnew_e()	{
	document.write('<img src="img/health/salud03.jpg" border="0" width="500" alt="">')
	document.write('<div class="content-w"><div class="content"><div class="entries"><div class="entry">') 
 	document.write('<h3>To live until the 120 years is possible</h3>') 
	document.write('<p class="info">Posted November 10, 2009 by Que!</p><div class="body">')
	document.write('The medical development, the improvement of the nutrition and the reduction of the infantile mortality have caused that the life expectancy when being born has happened of 30 to 80 years from 1870 to today.')
	document.write('The tobacco, the overweight and the inactivity are the burning fires years clears to us.<br><br>')
	document.write('The life expectancy when being born has not stopped growing in Spain: the people who they are born today will live on average 50 years more than those did than it in 1870.')
	document.write('The explanation it is in the reduction of infantile mortality, the medical development and the improvement of the nutrition that there are experimented.')
	document.write('In fact, to take care of to us is the best one <a href="#">elixir of eternal youth</a> because what more years it clears to us is the tobacco, the overweight, the alcohol and the inactivity.')
	document.write('“No I know if we will get to live 100 years on average, but more and more people will arrive at that age”, says to Rodriguez Leocadio, head of the Service of Geriatrics of the University Hospital of Getafe.')
	document.write('According to the experts, our biological limit as species is in 120 years, although there are people who defy this natural law.') 
	document.write('The best example is Jeanne Calment, a French that longeva shows the record of being more the person (1875-1997), with 122 years of life, exactly 50 more on those than Matusalén lived.<br><br>')
  document.write('<table border="0" cellspacing="0" cellpadding="0" border="0" bgcolor= #ffffff><tr>')
  document.write('<td align="center"><img src="img/health/salud01.jpg"><br>To take care of itself is key.</td>')
  document.write('<td style="padding-bottom:0px; padding-right:10px; padding-top:0px; padding-left:10px;" align="left" valign="top">')
  document.write('<a nohref="#">THE SPANIARDS WE HAVE GAINED HIM IN ONE DECADE THREE YEARS TO THE DEATH</a><br>')
  document.write('In 1995 the life expectancy when being born in our country was of 77 years (74 in the case of men and 81 in the one of the women).')
  document.write('In 2006, the average one already was of more than 80 years (77 for men and 84 for the women), according to the data of the National Institute of Statistic.<br><br>')
  document.write('“The genetics only explains 25% than we lived, the rest depends on us”<br><br>')
  document.write('“It does not serve to gain years of suffering. If we lived 86 years, the 85 ideal is that and average they are in perfect state”<br></td></tr></table>') 
	document.write('The evolution of all the developed societies is identical: “We are older, but also we are healthier and we are more independent”, it affirms to Leocadio Rodriguez, head of the service of Geriatrics of the University Hospital of Getafe.')
	document.write('In its opinion, “before prolonging the life, interests to us to improve the quality.')
	document.write('The challenge is that if we lived 86 years, we are 85 and average in a perfect state.')
	document.write('We are obtaining and it”.')
	document.write('For that reason, “that every time we are older is a happy reality”.<br><br>')
  document.write('“The cliche of ‘poor grandpa’ no longer exists.')
  document.write('Every time they are more and they are healthier”<br><br>')
  document.write('<a nohref="#">To rejoice to us before 55 years feels to us of wonder</a><br>')
  document.write('An investigation realized by several European centers, like the University of Stockholm or London, it has demonstrated that the health of the people who retire around the 55 years is far better that the one of those that continue working.')
  document.write('The difference enters everyone are explained by a gain “of eight or 10 years of healthrdquo;, they indicate.<br><br>') 
	document.write('The physical exercise, even to ages outposts, is one of best prescriptions to live more years.<br><br>')
  document.write('<a nohref="#">A thing is amount and another one, quality</a><br>')
  document.write('According to a study of University of Leicester the men live 69 years with health and the women, 68.')
  document.write('Therefore, they live more, but they do it to the men with a little more of health.<br><br>')
  document.write('<a nohref="#">On the brink of madness 10,000 centenaries</a><br>')  
	document.write('The data of the Institute National of Statistic they show that in Spain there are almost 10,000 people that they have more than 100 years, but the number does not stop to raise.')
	document.write('The Society Spanish of Geriatrics and Gerontology calculates that in 2050 they will be 50.000.<br><br>')
	document.write('<a nohref="#">There is almost a million people with more than 85 years</a><br>')
  document.write('According to the last register, there are 989,047 people that they surpass this age.')
  document.write('The women (679.699) they double to the men (309.348) in this statistic.<br><br>')
  document.write('<a nohref="#">We live the double that for 100 years</a><br>') 
	document.write('Although it seems incredible, in 1910 the hope of life when being born in Spain it was of 40 years, by that this number (now they are 80) has bent 100 years in the last.')  
	document.write('</div></div></div></div>')
	
}


function news_e()	{
	document.write('<table width="100%" height="100" cellpadding="0" cellspacing="0" bgcolor= #FFFFFF border="0" style="margin-left:0px; margin-top:0px; margin-bottom:0px; margin-right:0px;"><tr><td rowspan="2" width="85" valign="top">')

	document.write('<a href=" http://uk.eurosport.yahoo.com/29092007/58/world-cup-nz-cruise-past-romania.html " target="_blank">') 

	document.write('<img src="img/home/pictureone-170x106.bmp" height="96" border="0" alt=""><img src="img/home/pictureone-170x106_b.bmp" height="96" border="0" alt=""></a></td>')
	document.write('<td width="8" bgcolor="#FF9900"><img src="/img/home/dot_transparent.gif" border="0" height="20" width="8"></td>')
	document.write('<td style="padding-left:2px; padding-right:2px; padding-top:0px;" width="291"><strong>')

	document.write('<a href=" http://uk.eurosport.yahoo.com/29092007/58/world-cup-nz-cruise-past-romania.html " target="_blank">')

	document.write('World Cup - NZ cruise past Romania</a></strong></td></tr><tr>')
	document.write('<td colspan="2" style="padding-bottom:14px; padding-right:2px; padding-top:0px; padding-left:10px;" align="left">')

	document.write('<a href=" http://uk.eurosport.yahoo.com/29092007/58/world-cup-nz-cruise-past-romania.html " target="_blank">')
/*                                                        1         2         3         4         5         6        .7         8         9         0   *     1         2         3         4         5         6         7         8         9         0         1         2         3  */
/*                                               123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901 */
	document.write('<span style="color:back">New Zealand produced a fluid performance, even without the injured Dan Carter, to crush Romania 85-8 in their final Pool C match in Toulouse.The All-Blacks scored 13 tries in total against the Romanians with Joe Rokocoko helping himself to a hat-trick, while Sitiveni Sivivatu and Isaia</span></a>') 
	document.write('</td></tr></table>')
	
}

function update_e()	{
	var days = new Array(8); 
	days[1] = "Sunday"; 
	days[2] = "Monday"; 
	days[3] = "Tuesday"; 
	days[4] = "Wednesday"; 
	days[5] = "Thursday"; 
	days[6] = "Friday"; 
	days[7] = "Saturday"; 
	var months = new Array(13); 
	months[1] = "January"; 
	months[2] = "February"; 
	months[3] = "March"; 
	months[4] = "April"; 
	months[5] = "May"; 
	months[6] = "June"; 
	months[7] = "July"; 
	months[8] = "August"; 
	months[9] = "September"; 
	months[10] = "October"; 
	months[11] = "November"; 
	months[12] = "Dicember"; 
	var dateObj = new Date("11-16-2009") 
	var wday = days[dateObj.getDay() + 1] 
	var lmonth = months[dateObj.getMonth() + 1] 
	var date = dateObj.getDate() 
	var fyear = dateObj.getYear() 
	if (fyear < 2000) 
	fyear = fyear + 1900 
	document.write("Last Updated : " + wday + ", " + lmonth + " " + date + ", " + fyear) 

}

//********************************MM-DD-AAAA******************************************************


function actualizaReloj(){ 

/* Capturamos la Hora, los minutos y los segundos */
marcacion = new Date() 

/* Capturamos la Hora */
Hora = marcacion.getHours() 

/* Capturamos los Minutos */
Minutos = marcacion.getMinutes() 

/* Capturamos los Segundos */
Segundos = marcacion.getSeconds() 

/* Si la Hora, los Minutos o los Segundos
Son Menores o igual a 9, le a?adimos un 0 */

if (Hora<=9)
Hora = "0" + Hora

if (Minutos<=9)
Minutos = "0" + Minutos

if (Segundos<=9)
Segundos = "0" + Segundos

/* Termina el Script del Reloj */


/* Coemienza e? Script de la Fecha */

var Dia = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday");
var Mes = new Array("January","February","March","April","May","Juny","July","August","September","October","November","December");
var Hoy = new Date();
var Anio = Hoy.getFullYear();
var Fecha = Dia[Hoy.getDay()] + ", " + Hoy.getDate() + " " + Mes[Hoy.getMonth()] + " " + Anio + "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";

/* Termina el script de la Fecha */


/* Creamos 4 variables para darle formato a nuestro Script */
var Inicio, Script, Final, Total

/*En Inicio le indicamos un color de fuente  y un tama?o */
Inicio = "<font class='texto'>"

/* En Reloj le indicamos la Hora, los Minutos y los Segundos */
Script = Fecha 

/* En final cerramos el tag de la fuente */
Final = "</font>"

/* En total Finalizamos el Reloj uniendo las variables */
Total = Inicio + Script + Final

/* Capturamos una celda para mostrar el Reloj */
document.getElementById('Fecha_Reloj').innerHTML = Total

/* Indicamos que nos refresque el Reloj cada 1 segundo */
setTimeout("actualizaReloj()",1000) 
}

function hora(){
var fecha = new Date()
var hora = fecha.getHours()
var minuto = fecha.getMinutes()
var segundo = fecha.getSeconds()
if (hora < 10) {hora = "0" + hora}
if (minuto < 10) {minuto = "0" + minuto}
var horita = hora + ":" + minuto 
document.getElementById('hora').firstChild.nodeValue = horita
tiempo = setTimeout('hora()',1000)
}
function inicio(){
document.write('Transmission from&#160;Madrid&#160;&#160;')
document.write('<span id="hora">')
document.write('000000</span>')
hora()
}


