
function fnGetSubCategory(objCategory)
{
	strCategoryId = Base64.encode(objCategory.value);
	fnAjaxCaller('id_SubCategory','addquestion','subcategory', '&category='+strCategoryId, '', '');
}

function fnAddQuestion()
{
	if (document.getElementById("txtQuestion").value == "Example: Who is the Best Actor in the World?")
			document.getElementById("txtQuestion").value = "";
	
	return fnValidateForm(document.getElementById("frmAddQuestion"));
}
