var content='<p><font face="Verdana" Size="2"color="red">F o n d s s h o p<p><font color="black">bei Patrick Liebi & Partner<p><font color="gray">Als Inhaber der Fondsvertriebsbewilligung der Schweizerischen Bankenkommission (EBK) ist es uns möglich sämtliche in der CH zugelassen Fonds anzubieten<p><font color="black">wie z.B. UBS, CS, Migros Bank, Raiffeisen, Fidelity, JP Morgan, Mercury, Scudder etc.<p>zu attraktiven Konditionen !<p><font color="blue">- Vorteile -<p>alle Fonds unter einem Dach !...<p>Depotgebühren von 0,1% pro Jahr...<p>Alle Fonds auf einem Depotauszug...<p>Auswahl der besten Fonds...<p>kostenloser Steuerauszug inklusive...<p>günstige Ausgabekommissionen...</font><p>Lesen Sie dazu die Seite <a href="http://www.patrickliebi.ch/vista1-01.pdf">Anlageplanung</a> und den im Vista erschienenen Arikel das wichtigste zum Thema <a href="http://www.patrickliebi.ch/vista1-02.pdf">Anlagefonds</a></p><font color="blue"><p>Patrick Liebi leitet auch Pensionierungs Seminare bei der Pro Senectute mehr dazu unter <a href="http://www.pro-senectute.ch">www.zh.pro-senectute.ch</a></p><p><font color="gray">- Patrick Liebi & Team -</p>';

var boxheight=275;                    	// BACKGROUND BOX HEIGHT IN PIXELS.
var boxwidth=190;                      	// BACKGROUND BOX WIDTH IN PIXELS.
var boxcolor="#FFF6e9";        		// BACKGROUND BOX COLOR.
var speed=28;                          // SPEED OF SCROLL IN MILLISECONDS (1 SECOND=1000 MILLISECONDS)..
var pixelstep=1;                        // PIXELS "STEPS" PER REPITITION.
var godown=false;                     	// TOP TO BOTTOM=TRUE , BOTTOM TO TOP=FALSE
var outer, inner;
var elementheight;             
var w3c=(document.getElementById)?true:false;
var ns4=(document.layers)?true:false;
var ie4=(document.all && !w3c)?true:false;
var ie5=(document.all && w3c)?true:false;
var ns6=(w3c && navigator.appName.indexOf("Netscape")>=0)?true:false;
var txt=(ns4)? '<table cellpadding=0 cellspacing=0 border=0 height='+boxheight+' width='+boxwidth+'><tr><td><ilayer name="outer" bgcolor="'+boxcolor+'" visibility="hidden" width="'+boxwidth+'" height="'+boxheight+'">'  : '<div id="outer" style="position:relative; width:'+boxwidth+'; height:'+boxheight+'; visibility:visible; background-color:'+boxcolor+'; overflow:hidden" >';
txt+=(ns4)? '<layer  name="inner"  width="'+(boxwidth-4)+'" height="'+(boxheight-4)+'" visibility="hidden" left="2" top="2" >'+content+'</layer></ilayer></td></tr></table>'  :  '<div id="inner"  style="position:absolute; visibility:hidden; left:2px; top:2px; width:'+(boxwidth-4)+'; overflow:hidden; cursor:default">'+content+'</div></div>';
txt+='';
document.write(txt);

function scrollbox(){
if(ns4){
inner.top+=(godown)? pixelstep: -pixelstep;
if(godown){
if(inner.top>boxheight)inner.top=-elementheight;
}else{
if(inner.top<2-elementheight)inner.top=boxheight+2;
}}else{
inner.style.top=parseInt(inner.style.top)+((godown)? pixelstep: -pixelstep)+'px';
if(godown){
if(parseInt(inner.style.top)>boxheight)inner.style.top=-elementheight+'px';
}else{
if(parseInt(inner.style.top)<2-elementheight)inner.style.top=boxheight+2+'px';
}}}

window.onresize=function(){
if(ns4)setTimeout('history.go(0)', 400);
}

window.onload=function(){
inner=(ns4)?document.layers['outer'].document.layers['inner']:(ie4)?document.all['inner']:document.getElementById('inner');
elementheight=(ns4)? inner.document.height : inner.offsetHeight
if(ns4){
document.outer.clip.width=boxwidth;
document.outer.clip.height=boxheight;
inner.top=(godown)? -elementheight : boxheight-2;
inner.clip.width=boxwidth-4;
inner.clip.height=elementheight;
document.outer.visibility="show";
inner.visibility="show";
}else{
inner.style.top=((godown)? -elementheight : boxheight-2)+'px';
inner.style.clip='rect(0px, '+(boxwidth-4)+'px, '+elementheight+'px, 0px)';
inner.style.visibility="visible";
}
setInterval('scrollbox()',speed);
}