
			function sendForm(which)
			{
				var filled = true;								
				jQuery(".required").each(function(i,o)
				{					
					if(!jQuery.trim(o.value)) filled = false;
				});										
				
				var validEmail = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/.test(jQuery('#email_address').attr('value'));							
				
				if(filled && validEmail)
				{
					var params = null;					
					jQuery(".required,.normal").each(function(i,o){						
						if(o.name=='beszereles'){
							if(o.checked){
								params += '&'+o.name+'='+o.value;
							}
						} else {
							params += '&'+o.name+'='+o.value;	
						}												
					})
					
					jQuery.post("/wordpress/wp-content/themes/minosegiklimak/"+which+"-send.php", params,
					function(data){					   
					   					   					   
					   if(data!='error')
					   {
					   	window.location = '/send.php?type='+which;
					  	// jQuery('#ajanlatkero_result').html('Üzenetét sikeres továbbítottuk!').show();	
						/*setTimeout(function(){
							window.location = document.location.href+'#send'; 
							window.location.reload();
						},2000);						
						*/
					   }
					   else
					   {
					   	jQuery('#contact_form').hide();
					    jQuery('#ajanlatkero_result').html('Az üzenetét nem sikerült továbbíteni! Kérjük próbálja meg később újra.').show();						
					   }
					   
					}, "text");
				} 
				else 
				{
					if(!filled){
						alert('A félkövér betűkkel jelölt mezők kitöltése kötelező!');
					} else {
						alert('Hibás e-mail cím!');
					}					
					
				}			
			}
