function m_over(id)
{
	document.getElementById(id).style.backgroundImage = "url('images/schraffurused.gif')";
}

function m_out(id)
{
	document.getElementById(id).style.backgroundImage = "url('images/schraffur.gif')";
}



function resize_iframe(id,newheight,newwidth)
    {
        var height=window.innerWidth;//Firefox
        if (document.body.clientHeight)
        {
            height=document.body.clientHeight;//IE
        }
        document.getElementById("the_iframe").style.height = newheight+"px";
        document.getElementById("the_iframe").style.width = newwidth+"px";
    }


//-->

<!--
var vis = 0;

function togglesub()
{
  	 if(vis == 1)
		 hidesub();
	 else
		showsub();
 }

function showsub()
{
	vis = 1;
	 ml_over("unternehmen");
	 document.getElementById("subcat").style.visibility="visible";
 }

function hidesub()
{
	vis = 0;
	ml_out("unternehmen");
	document.getElementById("subcat").style.visibility="hidden";
 }

function ml_over(id)
{
	document.getElementById(id).style.backgroundColor = "#ECDCAF";
}

function ml_out(id)
{
	document.getElementById(id).style.backgroundColor = "";
}

function gutschein_enable() {
	document.getElementById('gutschein_formular').style.display = "block";
}

function gutschein_disable() {
	document.getElementById('gutschein_formular').style.display = "none";
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}