<!--
par_url_1 ="../theday/ticker/bas.htm";
function open1() {
msgWindow=window.open(par_url_1,'TickerWin','toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,width=360,height=130,left=38,top=250');
}
/*
    Titel: DHTML Ticker
    Autor: Christoph Bergmann
    email: cb@acc.de

    Copyright (c) Milch und Zucker - c. Bergmann und j. Gamperl, 1998. 
    All rights reserved. Alle Rechte vorbehalten. URL: http://dhtml.seite.net

    Dieser Code darf für nicht-kommerzielle  sowie kommerzielle Zwecke frei
    genutzt und angepaßt werden, solange dies unentgeltlich erfolgt und
    dieser Vermerk bestehen bleibt. 
*/
var delay=1;
var nextm=0;
var msg=new Array
(
	'1 For infections of bladder and ureter - drink 1-2 glasses of cranberry juice a day.',
	'2 Yummy and helpful for chapped lips - put on some honey.',
	'3 Climbing the stairs 6 min. daily lowers your cholesterol level by 10-15%',
	'4 Pasta makes you happy, it raises the serotonin level - Buon Appetito.',
        '5 Scientists have found out - caressing makes babys more intelligent.',
        '6 Men who have sex at least 3 times a week, have a reduced risk of heart attack by half.',
        '7 Great against headache and sleeping disorder - caviar - just spoon it up',
        '8 You can lose up to 10 pounds a year by chewing gum.',
        '9 Change of sides - changing the side of the bed from time to time has a positive effect on your relationship.',
        '10 Grapefruit juice as a fountain of youth for blood vessels - it prevents the platelets from lumping',
        '11 Laughter is the best medicine - it stimulates the cardiovascular system and improves the blood circulation',
        '12 Ginger- and cinnamon cookies help after an opulent Christmas Dinner, they have a stimulating effect on the digestion',
        '13 People suffering from ALS (Amyotrophic Lateralsklerosis)can set new hopes - Scientists of the John-Hopkins-University in Baltimore (USA) have managed to make paralyzed mice crawl again with injecitons of stem-cells... More at <a href=http://www.hopkinsmedicine.org target=_blank>www.hopkinsmedicine.org</a>'

);
function start_ticker()
{do_ticker(msg[0], 0, 1);}
function do_ticker(text, pos, dir)
{var out='<font face="Arial, Helvetica"><font color=#C0C0C0><font size=2>[&nbsp;'+text.substring(0, pos)+'&nbsp;]</font></font></font>';
if(navigator.appName=="Netscape")
with(document.ticker.document)
{open(); write(out); close();}
else
ticker.innerHTML=out;
pos+=dir;
if(pos>text.length)
setTimeout('do_ticker("'+text+'",'+pos+','+(-dir)+')', delay*5000);
else{if(pos<0)
{if(++nextm>=msg.length)
nextm=0;
text=msg[nextm];
dir=-dir;}
setTimeout('do_ticker("'+text+'",'+pos+','+dir+')', delay);
}
}
// -->