window.onresize = checkWidth;
window.onload = checkWidth;

function checkWidth() {
    if (window.innerWidth) {
        width = window.innerWidth;
    } else {
        width = document.body.offsetWidth;
    }
	if (window.innerHeight) {
        heigth = window.innerHeight;
    } else {
        heigth = document.body.offsetHeight;
    }
    
	
/*     if ((heigth < 540)||(width < 900)){
		setActiveStyleSheet('handheld');
		document.getElementById('storsak').style.display = 'inline';
		document.getElementById('la').style.display = 'none';
		document.getElementById('storting').style.display = 'none';
		document.getElementById('skjulings').style.display = 'none';
    } else {
	    setActiveStyleSheet('stil');
		document.getElementById('storsak').style.display = 'none';
		document.getElementById('la').style.display = 'inline';
		document.getElementById('storting').style.display = 'inline';
		document.getElementById('skjulings').style.display = 'inline';
    }
	
	
}  */
