	function chekValues1(){
				strout='';
				
				if(document.mainMes.fname.value==""){
					strout='הכנס שם' + '\n';
				}
				if(document.mainMes.topic.value==""){
					strout+='הכנס נושא' + '\n';
				}
				if(document.mainMes.descur.value==""){
					strout+="הכנס תוכן" + '\n';
				}
				
				if(document.mainMes.word.value==""){
					strout+="הכנס מילת קאפטש'ה" + '\n';
				}

					if(strout==''){
						return true;	
					}else{
						alert(strout);
					return false;
					}
	}
	//////////////////////////////////////////////////////////////////////////////
				
				function chekValues(obj){
				strout='';
				if(obj.fname.value==""){
				strout='הכנס שם' + '\n';
				}
				if(obj.topic.value==""){
				strout+='הכנס נושא' + '\n';
				}
				if(obj.descur.value==""){
				strout+="הכנס תוכן" + '\n';
				}
				if(obj.word.value==""){
					strout+="הכנס מילת קאפטש'ה" + '\n';
				}
				
				
				
				if(strout==''){
				return true;	
				}else{
				alert(strout);
				return false;
				}	
	}

