function SendForm () {

    for (i=0; i<document.forms[0].length; i++) {
        if (document.forms[0].elements[i].name == "c_cat" && document.forms[0].elements[i].value == "none" ) {
            alert('Пожалуйста, выберите тематику!');
            document.forms[0].elements[i].focus();
            return false;
        }
    }

return true;
}

function textChange()
{
 a=document.form1.confession.value.length;
 if((a)>1500) {
 	document.form1.confession.value=document.form1.confession.value.substring(0,1500);
 	document.getElementById('warningbox').style.visibility='visible';
 }
}