function sendform(t,l)
{
	var formID="formCF";
	var url=baseURL+'/'+l+"/contactus/sendmail";
	var dataArr=$("#"+formID).formSerialize()+'&t='+t;
	$("#iFormSB").hide();
	$("#divFeedback").css("color","#2A2A2C");
	$("#divFeedback").html(text['sendingM']);
    $("#divDragNdropClose").hide();
	ajax(url,dataArr,'divFeedback',true,true,function(){$("#iFormSB").show();$("#divDragNdropClose").show();});
}