/* window.addEvent('domready', function() {
	$('frmcontact').addEvent('submit', function(e) {		
		e.stop();
		var log = $('err_msg').empty().addClass('ajax-loading');	
		this.set('send', {onComplete: function(response) { 
			if(response)
			{			
				log.removeClass('ajax-loading');				
				$('err_msg').set('style',"color:#FF0000;font-size:11px;margin-bottom:10px;");
				log.set('html', response);				
			}else{
				log.removeClass('ajax-loading');
				$('err_msg').set('style',"color:#FF0000;font-size:11px;margin-bottom:10px;");
				log.set('html', '<strong><center>Thanks for your query. <br> We will be in contact shortly. <br /></center></strong><img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/1066080568/?label=umLtCKi3qAEQuLKs_AM&amp;guid=ON&amp;script=0"/>');
				$('cont_name').set('value', '');
				$('cont_company').set('value', '');
				$('cont_website').set('value', 'http://');
				$('cont_number').set('value', '');
				$('cont_email').set('value', '');
				$('cont_msg').set('value', '');
				$('cont_code').set('value', '');
				$('find_us').set('value', '');
				var wait = setInterval(function(){
						clearInterval(wait);
						window.location.reload();
				},6000);
			}
		}});		
		this.send();
	});
}); */

function validateForm(){
	var valid = true;
	var errmsg;
	
	//check fields
	if(document.getElementById('cont_name').value == ""){
		alert("Contact Name is required.");
		valid = false;
	}
	
	if(document.getElementById('cont_company').value == ""){
		alert("Company name is required.");
		valid = false;
	}
	
	return valid;
}


