﻿	function CUS_NotGndrFrmKont(){ 
    	var MsjId = document.getElementById('Not').value;
		if (MsjId==""){
			alert("Boş Gönderemezsin. Birşeyler Yazmalısın")
			return false;}
		else if (MsjId.length<3){
			alert("Bu Kadar Kısa Olmaz. Birşeyler Yazmalısın")
			return false;
		}else{
			return true;
		}
	}

