// JavaScript Document

function writeCookie(menuid)
{
//var today = new Date();
//var the_date = new Date("December 31, 2099");
//var the_cookie_date = the_date.toGMTString();

var expdate = new Date();
expdate.setTime ( expdate.getTime() + (60 * 60) );
//cookie is 1 uur geldig
var the_cookie_date = expdate.toGMTString();

/*var the_cookie = "ur_width=" + screen.width ;
var the_cookie = the_cookie + ";expires=" + the_cookie_date;
document.cookie=the_cookie

var the_cookie = "ur_height=" +screen.height;
var the_cookie = the_cookie + ";expires=" + the_cookie_date;
document.cookie=the_cookie*/

//var the_cookie = "menuid=test";
var the_cookie = "menuid=" + menuid;
var the_cookie = the_cookie + ";expires=" + the_cookie_date;
document.cookie = the_cookie
}


function writeCssCookie(size)
{
//var today = new Date();
//var the_date = new Date("December 31, 2099");
//var the_cookie_date = the_date.toGMTString();

var expdate = new Date();
expdate.setTime ( expdate.getTime() + (60 * 60) );
//cookie is 1 uur geldig
var the_csscookie_date = expdate.toGMTString();

/*var the_cookie = "ur_width=" + screen.width ;
var the_cookie = the_cookie + ";expires=" + the_cookie_date;
document.cookie=the_cookie

var the_cookie = "ur_height=" +screen.height;
var the_cookie = the_cookie + ";expires=" + the_cookie_date;
document.cookie=the_cookie*/

//var the_cookie = "menuid=test";
var the_csscookie = "size=" + size;
var the_csscookie = the_csscookie + ";expires=" + the_csscookie_date;
document.cookie = the_csscookie
}

