function check_presentation(frm)
{
	if(document.getElementById('ob_gold_member').checked==false)
		document.getElementById('presentation_counter').innerHTML='['+frm.comp_presentation.value.length+'/200]';
	else
		document.getElementById('presentation_counter').innerHTML='['+frm.comp_presentation.value.length+'/2000]';
}
function inputs_validate(frm)
{
	check_presentation(document.comp_add);
	if(frm)
	{
		if(frm.user_name.value.length<1 || frm.user_name.value.length>50){alert('Kullanıcı adınızı giriniz.');frm.user_name.focus();return false;}
		if(frm.user_password.value.length<1 || frm.user_password.value.length>50){alert('Parolanızı giriniz.');frm.user_password.focus();return false;}
		if(frm.comp_name.value.length<1 || frm.comp_name.value.length>120){alert('Firma adınızı uygun formatta giriniz.');frm.comp_name.focus();return false;}
		if(frm.comp_authoritative.value.length<1 || frm.comp_authoritative.value.length>120){alert('Firma yetkilisinin adını ve soyadını uygun formatta giriniz.');frm.comp_authoritative.focus();return false;}
		if(frm.comp_mail.value.length<1 || frm.comp_mail.value.length>120){alert('Firmanın elektronik posta adresini uygun formatta giriniz.');frm.comp_mail.focus();return false;}
		if(frm.comp_tel.value.length<11 || frm.comp_tel.value.length>15){alert('Firmanın telefon numaranızı uygun formatta girinizn.');frm.comp_tel.focus();return false;}
		if(frm.comp_address.value.length<1 || frm.comp_address.value.length>120){alert('Firma adresinizi uygun formatta giriniz.');frm.comp_address.focus();return false;}
		if(frm.comp_category.value.length<1 || frm.comp_category.value.length>120){alert('Firmanın hizmet verdiği iş sektörünü seçiniz.');frm.comp_category.focus();return false;}
		if(document.getElementById('ob_gold_member').checked==true && (frm.comp_presentation.value.length<1 || frm.comp_presentation.value.length>2000)){alert('Firma tanıtım bilginiz.\n En fazla 2000 harf girebilirsiniz.');frm.comp_presentation.focus();return false;}
		if(document.getElementById('ob_gold_member').checked==false && (frm.comp_presentation.value.length<1 || frm.comp_presentation.value.length>200)){alert('Firma tanıtım bilginiz.\n En fazla 200 harf girebilirsiniz.');frm.comp_presentation.focus();return false;}
		if(frm.code.value.length!=5){alert('Güvenlik kodunu giriniz.');frm.code.focus();return false;}
	}
	return true;
}
