<!--//
var max_title=100;
var max_description=250;
var max_desc_long=500;
var max_keywords=150;
var max_link=150;
function init()
{
    count(document.data.title, 'title', max_title);
    count(document.data.link, 'link', max_title);
    count(document.data.description, 'description', max_description);
    count(document.data.keywords, 'keywords', max_keywords);
    count(document.data.desc_long, 'desc_long', max_desc_long);		
}

function count(form, id,x)
{
if (form.value.length>x)
    form.value=form.value.substring(0,x);
document.getElementById(id).innerHTML=form.value.length+'/'+x;
}
//-->