<!--//--><![CDATA[//><!--
function validate(obj) {
	var tmp;
	if ($.trim($('#organization').val())=="") {
		$.jGrowl("Please enter your organization name.");
		tmp = 'organization';
	}
	if ($.trim($('#contactperson').val())=="") {
		$.jGrowl("Please enter your name.");
		if (!tmp)
			tmp = 'contactperson';
	}
	if ($.trim($('#contactno').val())=="") {
		$.jGrowl("Please enter your contact no.");
		if (!tmp)
			tmp = 'contactno';
	}
	if ($.trim($('#email1').val())=="") {
		$.jGrowl("Please enter your email address.");
		if (!tmp)
			tmp = 'email1';
	}
	else if (!check_email($('#email1').val())) {
		$.jGrowl("Please enter a valid email address.");
		if (!tmp)
			tmp = 'email1';
	}
	if ($.trim($('#question').val())=="") {
		$.jGrowl("Please enter your queries.");
		if (!tmp)
			tmp = 'question';
	}
	if (tmp) {
		$('#'+tmp).focus();
		return false;
	}
	obj.submit();
	return true;
}
//--><!]]>
