function answerques(){
	document.frmQuestdetail.action='answerthisquestion.php';
	document.frmQuestdetail.submit();
}
function answereditques(){
	document.frmQuestdetail.action='editanswer.php';
	document.frmQuestdetail.submit();
}
function pickanswer(){
	document.frmQuestdetail.action='pickanswer.php';
	document.frmQuestdetail.submit();
}
function adddetails(){
	document.frmQuestdetail.action='adddetails.php';
	document.frmQuestdetail.submit();
}
function emailfriend(){
	document.frmQuestdetail.action='emailtofriend.php';
	document.frmQuestdetail.submit();
}
function reportabuse() {
	document.frmQuestdetail.btnAbuse.value = 1;
	document.frmQuestdetail.submit();
}
function showtab1()
{

  document.getElementById('tc1').style.display = 'block';
    document.getElementById('tc1').style.visibility = 'visible';
  document.getElementById('tc2').style.display = 'none';
    document.getElementById('tc2').style.visibility = 'hidden';

}
function showtab2()
{

  document.getElementById('tc2').style.display = 'block';
    document.getElementById('tc2').style.visibility = 'visible';
  document.getElementById('tc1').style.display = 'none';
    document.getElementById('tc1').style.visibility = 'hidden';


}