function confirmDeleteAnswer()
{
var yes=confirm('Are you sure you want to delete this Answer?');
	if (yes)
	return true ;
		else
	return false ;
} 

function confirmDeleteQuestion()
{
var yes=confirm('Deleting this question will also delete all answers under it.\nAre you sure you want to delete this quesstion?');
	if (yes)
	return true ;
		else
	return false ;
} 

function modifyAnswer(qesId,ansId)
{
	window.location.href = 'modify_answer.php?qesId=' + qesId + '&ansId=' + ansId;
}

function modifyQuestion(qesId)
{
	window.location.href = 'modify_question.php?qesId=' + qesId;
}

function modifyAnswerU(qesId,ansId)
{
	window.location.href = 'modify_answeru.php?qesId=' + qesId + '&ansId=' + ansId;
}
