function send_question() 
{
		name = document.getElementById("name").value;
		email = document.getElementById("email").value;
		question = document.getElementById("question").value;		
		post_data ="ajax=1&send_question=1&name="+name+"&email="+email+"&question="+question;
		loadHTML('POST','index.php', post_data, 'question_form');
}

function open_question_form()
{
	post_data ="ajax=1&send_question=1&more=1";
	loadHTML('POST','index.php', post_data, 'ajax_q_form');
}

