function sendQuestion()
{
	var ajax = new Ajax();
	
	ajax.action = BaseUrl + "index.php";
	ajax.method = "post";
	
	
	//Mofu fix
	document.forms["questionForm"].article.value = ID("aid").value;
	
	ajax.selectForm("questionForm");
	
	ajax.onready = function () {
		sp = ajax.response.split(":");
		if(sp[0] == "error")
		{
			ID("questionError").innerHTML = sp[1];
		}
		else
		{
			$("#questionBox").hide();
			$("#questionSuccess").show('fast');
		}
	};
	
	ajax.run();
}
function ask4Delivery()
{
	//Forms bearbeiten
	ID("questiontype").value = "delivery";
	ID("questionText").innerHTML = ID("deliverytext").value;
	$("#questionTabAnchor").click();
}
