m1="info"
m2="polyorg"

var wdh=0;
var x=160;
var y=55;
var xm=10;
var ym=10;

function doscale(x,y)
/* der Aufruf dieser Funktion ändert die größe auf die werte x und y */
{
if (document.all) 					/* wenn Microsoft-Modell */
 {
 document.all.rahmen.style.width=x; /* x verschieben */
 document.all.rahmen.style.height=y;
 }
 else
 if (typeof(document.getElementById)=="function")
                               		/* wenn Netscape 6.x */
  {
    document.getElementById("rahmen").style.width=x;  /* x verschieben */
	  document.getElementById("rahmen").style.height=y;
  }
  else
  if (document.rahmen)       		/* wenn Netscape 4.x */
  {
    document.rahmen.width=x;  		/* x verschieben */
  	document.rahmen.height=y;
  }
  else                         		/* wenn keine Unterstuetzung */
    alert("Der Browser unterstŸtzt die Scrollfunktion nicht");
}

function scale()
{
  
  
  if (wdh<30) 
  {  
  x+=xm;
  y+=ym; 
  wdh=wdh+1;
  doscale(x,y);
  }
  if (wdh!=30) {setTimeout("scale()", 0);}
disp();
  
}

function shrink()
{
	 	
		if (wdh>0) 
	  {
	  x+=-xm;
	  y+=-ym; 
	  wdh=wdh-1;
	  doscale(x,y);
	  }	 
	  if (wdh!=0) {setTimeout("shrink()", 0);} else {nodisp();}

}


function disp()
{
  if (document.all)
  {
  document.all.liob.style.display="block";
  document.all.reob.style.display="block";
  document.all.liu.style.display="block";
  document.all.reu.style.display="block";
  }
  else if (document.liob) 
  {
   document.liob.display="block";
   document.reob.display="block";
   document.liu.display="block";
   document.reu.display="block";

  }
  else if (typeof(document.getElementById)=="function") 
  {
   document.getElementById("liob").style.display="block";
   document.getElementById("reob").style.display="block";
   document.getElementById("liu").style.display="block";
   document.getElementById("reu").style.display="block";
  }  
}

function nodisp()
{
  if (document.all)
  {
  document.all.liob.style.display="none";
  document.all.reob.style.display="none";
  document.all.liu.style.display="none";
  document.all.reu.style.display="none";
  }
  else if (document.liob) 
  {
   document.liob.display="none";
   document.reob.display="none";
   document.liu.display="none";
   document.reu.display="none";
  }
  else if (typeof(document.getElementById)=="function") 
  {
   document.getElementById("liob").style.display="none";
   document.getElementById("reob").style.display="none";
   document.getElementById("liu").style.display="none";
   document.getElementById("reu").style.display="none";
  }  
}

function mail(m1,m2)
{
 document.write("<a href=mailto:"+m1+"@"+m2+".de>"+m1+"@"+m2+".de</a>");
}
