/****************************************/
/*	Haven7 JavaScript File
/****************************************/

/****************************************/
/*	Font Size Modifier
/****************************************/

function setFontSizeCookie(large) {
	var today = new Date();
	var expire = new Date();
	
 	expire.setTime(today.getTime() + 3600000 * 24 * 365);
	document.cookie = 'haven7_largeFontSize=' + large + ';expires=' + expire.toGMTString();
}

function onChangeFontSize(large) {
	divSmall = document.getElementById('small');
	divLarge = document.getElementById('large');

	var elm = document.getElementById('content');
	if (!elm)
		elm = document.getElementById('home');

	if(large) 
	{
		elm.style.fontSize = '13px';
		
		divSmall.className = '';
		divLarge.className = 'active';
		setFontSizeCookie(true);
	}
	else
	{
		elm.style.fontSize = '11px';
		divSmall.className = 'active';
		divLarge.className = '';
		setFontSizeCookie(false);
	}
}

function onKavel(id)
{
	//document.location.href = "index.php?category0=de_kavels&category1=interactieve_kaart&id=" + id;
	xajax_updateKavel(id);
}

function openPopup()
{
	window.open("index.php?category0=de_kavels&category1=interactieve_kaart", "interactieve_kaart", "width=810,height=780");
}

function onLink(anchor)
{
	window.opener.location.href = anchor.href;
	window.close();
	return false;
}
