var  $$ = jQuery.noConflict();
  function writeCookie() 
	{
	 var today = new Date();
	 var the_date = new Date("December 31, 2023");
	 var the_cookie_date = the_date.toGMTString();
	 var the_cookie = "users_resolution="+ screen.width +"x"+ screen.height;
	 var the_cookie = the_cookie + ";path=/;expires=" + the_cookie_date;
	 document.cookie=the_cookie
		 
	// location = 'get_resolution.php';
	}
    if (document.cookie.indexOf('users_resolution') != ''){
    	writeCookie();
    }
function addtext(newtext) { 
    document.myform.comment.value = document.myform.comment.value+= newtext;
}
$$(document).ready(function(){
	$$("#nachten").click(function() {
	window.location = "/verkoop-voorwaarden";
	});
	$$(".submit").click(function() {
	 	document.forms["searchForm"].submit();
	 });
});

