function gocat()
{
	var catid = document.getElementById("category").options[document.getElementById("category").selectedIndex].value;
	document.location.href='?content=article_list&cid='+catid;
}

function load_shoutbox(mode,Shout_Name,Shout_URL,ShoutMessage,ShoutIP)
{
	var shouturl = './contents/shoutbox/frame.php';
	switch(mode)
	{
		case 'send':
			var modurl = 'shoutsubmit=yes&ShoutName='+Shout_Name+'&ShoutURL='+Shout_URL+'&Message='+ShoutMessage+'&IP='+ShoutIP;
			inujax("shoutbox_frame", '', shouturl, "POST", modurl);
		break;
		case 'load':
			inujax("shoutbox_frame", '', shouturl, "GET", modurl);
		break;
	}
}

function webload(){
	load_shoutbox('load','','','','');
}