// JavaScript Document
		
		function getStyle(layer) {
			if( document.getElementById ) {
				return document.getElementById( layer ).style
			} else if( document.all ) {
				return document.all[layer].style
			} else {
				return document[layer]
			}
		}
		
		function getObj(obj) {
			if( document.getElementById ) {
				return document.getElementById(obj)
			} else if( document.all ) {
				return document.all[obj] 
			} else {
				return document[obj]
			}
		}
		
		function popitup(url)
		{
			newwindow=window.open(url,'name','height=800,width=600,scrollbars=yes,resizable=1');
			if (window.focus) {newwindow.focus()}
			return false;
		}
		
		function updateSize() {
		  var myWidth = 0, myHeight = 0;
		  if( typeof( window.innerWidth ) == 'number' ) {
			//Non-IE
			myWidth = window.innerWidth;
			myHeight = window.innerHeight;
		  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
			//IE 6+ in 'standards compliant mode'
			myWidth = document.documentElement.clientWidth;
			myHeight = document.documentElement.clientHeight;
		  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
			//IE 4 compatible
			myWidth = document.body.clientWidth;
			myHeight = document.body.clientHeight;
		  }
		  
		  myWidth = 1000;
		  
		  //getStyle('size1').width = myWidth - 255 + "px";
		  //getStyle('size2').width = myWidth - 470 + "px";
		  //getStyle('size3').width = myWidth - 465 + "px";
		  //getStyle('size4').width = myWidth - 600 + "px";
		  //getStyle('sizepic').width = myWidth - 240 + "px";
		  /*for (i = 1; i <= 10; i++)
		  {
			if(getObj('lijn'+i) != null)
			{
				getStyle('lijn'+i).width = myWidth - 465 + "px";
			}
		  }
		   for (i = 1; i <= 3; i++)
		  {
			if(getObj('holder'+i) != null)
			{
				getStyle('holder'+i).width = ((myWidth - 465) / 3) + "px";
				getStyle('holderimg'+i).width = ((myWidth - 465) / 3) + "px";
			}
		  }
		 for (i = 1; i <= 50; i++)
		  {
			if(getObj('art'+i) != null)
			{
				getStyle('art'+i).width = (((myWidth - 465) / 3) - 20) + "px";
				getStyle('holdercel'+i).width = ((myWidth - 465) / 3) + "px";
				getStyle('holdersubcel1'+i).width = ((myWidth - 465) / 3) + "px";
				getStyle('holdersubcel2'+i).width = ((myWidth - 465) / 3) + "px";
			}
		  }*/
		}
		
		// -->