	function go()
	{
		box = document.forms[0].navi;
		destination = box.options[box.selectedIndex].value;
		if (destination) location.href = destination;
	}

function ShowPage() {
      myWidth = document.body.clientWidth;
if (myWidth < 950) {
             // KLEINER dan 1024
             document.getElementById('LayoutSmall').style.display = 'block' ;
             document.getElementById('LayoutLarge').style.display = 'none' ;}


if (myWidth > 950) {
             // GROTER dan 1024
             document.getElementById('LayoutSmall').style.display = 'none' ;
             document.getElementById('LayoutLarge').style.display = 'block' ;}

}