
function PopUp (Verweis) {
  Fenster1 = window.open(Verweis, "Fenster1", "width=700,height=500,left=450,top=600,scrollbars=yes");
  Fenster1.focus();
}

function Vorschau (Hoch,Breit,Text)
{

	if (navigator.appName == "Microsoft Internet Explorer")
	{

		Breite = document.body.clientWidth;
		Hoehe = document.body.clientHeight;

	} else {

  		Breite = window.innerWidth;
  		Hoehe = window.innerHeight;

	}


	if (Text == "1")
	{
	Breit = Breit + 100;
	}


	if (Breit > Breite)
	{
	Bildbreit = Breite / 2;
	} else {
	Bildbreit = Breit / 2;
	}



	if (Hoch > Hoehe)
	{
	Bildhoch = (Hoehe - 20) / 2
	} else {
	Bildhoch = Hoch / 2;
	}

	if (Hoch < Breit)
	{
	Bildhoch = (Hoch + 100) / 2;
	Bildbreit = (Breit - 100) / 2;
	}


	if (document.getElementById) {
	 posia = Breite + "px";
	 posib = Hoehe + "px";
	 posic = "-" + Bildbreit + "px";
	 posid = "-" + Bildhoch + "px";
	 document.getElementById("Vorschaubild").style.width  = posia;
	 document.getElementById("Vorschaubild").style.height  = posib;
	 document.getElementById("DasBild").style.display  = "block";
	 document.getElementById("DasBild").style.left  = "50%";
	 document.getElementById("DasBild").style.marginLeft  = posic;
	 document.getElementById("DasBild").style.top  = "50%";
	 document.getElementById("DasBild").style.marginTop  = posid;
	} else if (document.all) {
	 document.all.Vorschaubild.style.width = Breite;
	 document.all.Vorschaubild.style.height = Hoehe;
	 document.all.DasBild.style.display  = "block";
	 document.all.DasBild.style.left = Bildbreit;
	 document.all.DasBild.style.top = Bildhoch;
	}

	window.scrollTo(0,0);



}

function KeineVorschau ()
{

	if (document.getElementById) {
	 posia = 0 + "px";
	 posib = 0 + "px";
	 document.getElementById("Vorschaubild").style.width  = posia;
	 document.getElementById("Vorschaubild").style.height  = posib;
	 document.getElementById("DasBild").style.display  = "none";
	} else if (document.all) {
	 document.all.DasBild.style.display  = "none";
	 document.all.Vorschaubild.style.width = 0;
	 document.all.Vorschaubild.style.height = 0;
	}

}



function cm(Tab)
{
	document.getElementById(Tab).className = "menuc";

}
function om(Tab,Way)
{
	document.getElementById(Tab).className = Way;

}
