
function shout_enlarge() {

	parent.document.getElementById("chatframe").setAttribute("class","chatframe_large");
	document.cookie = "__Shoutbox=enlarged; path=/;"
	return false;
}

function shout_normal() {

	parent.document.getElementById("chatframe").setAttribute("class","chatframe");

	document.cookie = "__Shoutbox=normal; path=/;"
	return false;
}
function shout_small() {

	parent.document.getElementById("chatframe").setAttribute("class","chatframe_small");

	document.cookie = "__Shoutbox=small; path=/;"
	return false;
}



