
function SetCookie(which)
{
	
	document.cookie =  'settore=' + which + '; path=/;';
}

function getCookie(NameOfCookie)
{
	if (document.cookie.length > 0) 
	{
		begin =  document.cookie.indexOf(NameOfCookie+"=");
		if (begin != -1)
			begin += NameOfCookie.length+1;
		end = document.cookie.indexOf(";",  begin);
		if (end == -1) 
			end =  document.cookie.length;
		return unescape(document.cookie.substring(begin,  end));
	} 
	expand('el7', 'null');
	return  null;
}


function getBodyLoad(){
	var param = getCookie('settore');
	
	SetCookie(param);
	if(param == 'news') expand('el0',param);
	if(param == 'infosett') expand('el1', param);
	if(param == 'infotec') expand('el2', param);
	if(param == 'consulenza') expand('el3', param);
	if(param == 'uffacq') expand('el4', param);
	if(param == 'community') expand('el5', param);
}