window.onload = initializePage;
function initializePage()	{
	if (document.getElementById("fontsizeup"))	{
		fontSizeUp = document.getElementById("fontsizeup");
		fontSizeDown = document.getElementById("fontsizedown");
		textContent = document.getElementById("text-content");
		fontSizeUp.onclick = increaseFontSize;
		fontSizeDown.onclick = decreaseFontSize;
		textContent.style.fontSize = "12px";
	}
	if (document.getElementById('quicklinks_form'))	{
		quicklinks = document.getElementById('quicklinks_form');
		quicklinks.onchange = gotopage;
	}
}

function increaseFontSize()	{
	currentTextSize = parseInt(textContent.style.fontSize);
	currentTextSize = currentTextSize + 2;
	if (currentTextSize <= 24)
		textContent.style.fontSize = currentTextSize + 'px';
}
function decreaseFontSize()	{
	currentTextSize = parseInt(textContent.style.fontSize);
	currentTextSize = currentTextSize - 2;
	if (currentTextSize > 8)
		textContent.style.fontSize = currentTextSize + 'px';
}
function gotopage()	{
	if (quicklinks.options[quicklinks.selectedIndex].value != 'default')
		window.location = quicklinks.options[quicklinks.selectedIndex].value;
}