function ProveriUnose(){
//alert('test!');
	window.document.getElementById('txtIme').className="textbox";
	window.document.getElementById('txtEmail').className="textbox";
	//window.document.getElementById('txtPitanje').className="textbox";
	window.document.getElementById('txtPoruka').className="textarea";
	window.document.getElementById('grForm').style.display='none';
	//window.document.getElementById('grPitanje').style.display="none";
	window.document.getElementById('number').className="textbox";

	var bOk=true;

	/*var sVrednost=window.document.getElementById('txtPitanje').value;
	if((sVrednost!='da' && sVrednost!='DA' && sVrednost!='Da' && sVrednost!='dA' && sVrednost!='да' && sVrednost!='ДА' && sVrednost!='Да' && sVrednost!='дА')){
		window.document.getElementById('txtPitanje').className='box_error';
		window.document.getElementById('grPitanje').style.display="";
		bOk=false;
	}*/

	if(window.document.getElementById('txtIme').value==""){
		window.document.getElementById('txtIme').className='box_error';
		bOk=false;
	}
	
	if(window.document.getElementById('txtEmail').value==""){
		window.document.getElementById('txtEmail').className='box_error';
		bOk=false;
	}
	
	if(window.document.getElementById('txtPoruka').value==""){
		window.document.getElementById('txtPoruka').className='textarea_error';
		bOk=false;
	}
	
	if(window.document.getElementById('number').value==""){
		window.document.getElementById('number').className='box_error';
		bOk=false;
	}

	if(!bOk){
		window.document.getElementById('grForm').style.display='';
	}

return bOk;

}

