$(document).ready(function(){
	setDIVsize();
});

function setDIVsize(){
	
	 var windowheight = document.documentElement.clientHeight;

	//wHeight = $(window).height();  --- bleek niet te werken; veroorzaakte crash bij Werner

    wHeight = windowheight;

	wWidth = $(window).width();
	menuWidth = $('#menu').width();
	
	layerWidth = wWidth - (menuWidth+10);
	
	$('#Eview').width(layerWidth).height(wHeight);
	$('#menu').height(wHeight);
	$('#contentTable').height(wHeight-180);
	$('#PL').height(wHeight-210);
}
function addToCart(){
	alert('This application can be linked to a purchase- or business-system. Please contact us at info@prodesk.biz for more information.');
}
