// JavaScript Document
var contentHeight;

/////////////////////////////////////////////////////
//	@name	change_size
//	@attr	size : Size of the font
//	@desc	Set the font size in the stylesheet
//	@return	none
/////////////////////////////////////////////////////
function change_size(size) {

	// Change the font size in the stylesheet
	if(size=="small"){
		document.styleSheets[0].rules[0].style.fontSize = "11px";
	}
	else if(size=="default"){
		document.styleSheets[0].rules[0].style.fontSize = "12px";
	}
	else if(size=="large"){
		document.styleSheets[0].rules[0].style.fontSize = "14px";
	}
	// Reset the content height to fit the new font size
	setContentHeight(30);
}
	
