/* ______________________________________________________________________

    Java Script study for F1TIME in-game messaging system
    Last updated on 2004.08.07
    Copyright(c) F1TIME - Tadas Bubelevicius.
	You can use this script if you do not remore this header
______________________________________________________________________ */


function textCounter(field, countfield, maxlimit)
{
	countfield.value = maxlimit - field.value.length;
}

function showPost(id)
{
	var postTop 	= document.getElementById('top' + id);
	postTop.style.display="";
	var postBody 	= document.getElementById('body' + id);
	postBody.style.display="";
}