// Flag zum resizen der Divs
var resize_div = false;
var resize_div_wert = 0;
var resize_div_wert2 = 0;
// Flag zum resizen der iFrames in Angeboten
var resize_iframe1 = false;
var resize_iframe1_wert = 0;

function resize()
{
                // Breite und Hoehe des Anzeigebereiches im Browserfenster ermitleln
	var fensterhoehe;

	if (self.innerHeight) // all except Explorer
	{
	     fensterhoehe = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight)
	{
		 // Explorer 6 Strict Mode
	     fensterhoehe = document.documentElement.clientHeight;
	}
	else if (document.body) // other Explorers
	{
	     fensterhoehe = document.body.clientHeight;
	}

                neue_hoehe = fensterhoehe - resize_div_wert;
                neue_hoehe2 = fensterhoehe - resize_div_wert2;
                document.getElementById('divfuerhoehe').style.height = neue_hoehe;
	document.getElementById('tdfuerhoehe').height = neue_hoehe;
                document.getElementById('tdfuerhoehe2').height = neue_hoehe2;

	if(resize_div == true)
	{
		//neue_hoehe = fensterhoehe - resize_div_wert;
		//document.getElementById('divfuerhoehe').style.height = neue_hoehe;
		//document.getElementById('tdfuerhoehe').height = neue_hoehe;
	}

	if(resize_iframe1 == true)
	{
		neue_hoehe = fensterhoehe - resize_iframe1_wert;
		document.getElementById('inhalt2iframe').style.height = neue_hoehe;
	}
}

function shop_offer_new_scroll() {

//document.getElementById("shop_offer_new").style.top = document.body.scrollTop;
//setTimeout( "shop_offer_new_scroll()", 10 );

}

function body_load() {

shop_offer_new_scroll();
resize();

}