function blog_send_comment()
{
document.getElementById("blog_c_form").submit();
}


function blog_send_message()
{
document.getElementById("blog_ms_form").submit();
}


function blog_comment_show (objekt)
{
if (objekt == "short")
	{
	document.getElementById("bloglist_comment_short").style.display = "block";
	document.getElementById("bloglist_comment_long").style.display = "none";	

	document.getElementById("bloglist_comment_switch_short").style.display = "block";
	document.getElementById("bloglist_comment_switch_long").style.display = "none";	
	}
else
	{
	document.getElementById("bloglist_comment_long").style.display = "block";
	document.getElementById("bloglist_comment_short").style.display = "none";	

	document.getElementById("bloglist_comment_switch_long").style.display = "block";
	document.getElementById("bloglist_comment_switch_short").style.display = "none";	
	}
}
