
 //##############################################
var O_STOP=0;
var O_START=-180;
var AKT_POS=O_START;
var STOP=2;
 //##############################################
if(document.all){ brow=1; } //IE 4
if(document.layers){ brow=3; } //Netscape 4
if(document.getElementById){
	if(!document.all){ brow=2; } // Netscape 6
	else { brow=4; } //IE ab 5
}
if(brow==0){ alert("Ihr Browser ist leider zu alt."); }
 //##############################################
 function posit_zu() {
    if(brow==1){ document.all["melds"].style.top=O_START; }
	if((brow==2)||(brow==4)){ window.document.getElementById("melds").style.top=O_START; }
	if(brow==3){ window.document.layers["melds"].top=O_START; }
 }
 //##############################################
function posit() {
bewegen();
	if(STOP==2) { AKT_POS=AKT_POS+5; window.setTimeout("posit();",1); }
	if(AKT_POS>O_STOP) { STOP=1; }
} 
function bewegen(){
	if(brow==1){ document.all["melds"].style.top=AKT_POS; }
	if((brow==2)||(brow==4)){ window.document.getElementById("melds").style.top=AKT_POS; }
	if(brow==3){ window.document.layers["melds"].top=AKT_POS; }
}
 //##############################################
