// content scroll resize
//window.onresize = versch;


function nh_re() {
    //alert("v");
    var endcont;
    
    if (self.innerHeight) // all except Explorer
    {
	endcont = self.innerHeight;
    }
    else if (document.documentElement && document.documentElement.clientHeight)
	// Explorer 6 Strict Mode
    {
	endcont = document.documentElement.clientHeight;
    }
    else if (document.body) // other Explorers
    {
	endcont = document.body.clientHeight;
    }
    //alert(endcont);
    nh = endcont;
    //alert(nh);
    return nh;
    
}

function versch(Ereignis) {
    //nh = (nh_re() < 60) ? 60 : nh_re();
    var nh = nh_re();
    alert(nh);
    document.getElementById('hr').style.height = nh;
	
    document.getElementById('ccwrap').style.height = nh;
   
    
}
