//write cookie for user resolution
function writeCookie() {
	 var today = new Date();
	 var the_date = new Date("December 31, 2023");
	 var the_cookie_date = the_date.toGMTString();
	 var availheight=screen.availHeight;
     var availwidth=screen.availWidth;
     var colordepth=screen.colorDepth + "bit";
	 var pixeldepth=screen.pixelDepth + "bit";
	 var the_cookie = "users_resolution="+ screen.width +"x"+ screen.height;
	 var the_cookie = the_cookie + ";path=/;expires=" + the_cookie_date;
	 document.cookie=the_cookie
}
if (document.cookie.indexOf('users_resolution') != ''){
	writeCookie();
}

$(function(){
	$('#mainmenu .haschild > a').removeAttr('href');
});

function print() {
  var a = window.open('','','scrollbars=yes,width=300,height=300');
  a.document.open('text/html');
  a.document.write('<html><head><link rel="stylesheet" href="/themes/dewit/style.css"></head><body style="padding-left:20px;background-color:#ffffff;>"');
  a.document.write(document.getElementById('print').innerHTML);
  a.document.write('</body></html>');
  a.print();
  a.close();
}
