//go to question page
function gotoQuestionShow(eq_autoid){
	window.location.href = "/ask/topic/"+eq_autoid;
}
//go to personal infomation
function gotoPersonalInfomation(p_id){
	//alert("gotoPersonalInfomation");
	//return;
	window.open("/blog/"+p_id,'blog_home','fullscreen=1,resizable=yes,scrollbars=yes');
}
//get expert info detail by id
function gotoExpertInfoDetail(ed_autoid){
	window.location.href = '/expert/team/'+ed_autoid;
	//window.open('/mamiai/handler/Expert-ExpertDetail?ed_autoid='+ed_autoid,'expert_detail','fullscreen=1,resizable=yes,scrollbars=yes');
}
//get expert info detail by id
function gotoIllnessDetailById(da_autoid){
	window.location.href = '/expert/team/'+ed_autoid;
}
//link to interview home page
function gotoInterviewHomePage(){
	document.location.href = "/view";
}
//go to question select page
function gotoExpertQuestionPage(){
	window.location.href = '/mamiai/handler/Expert-QuestionSearch?list_type=search&eq_title='+encodeURIComponent(jQuery("#eq_title").val())+'&question_type='+jQuery("#question_type").val();
}
function gotoExpertQuestionPageWithString(eq_title){
	window.location.href = '/mamiai/handler/Expert-QuestionSearch?list_type=search&eq_title='+encodeURIComponent(eq_title);
}
//link to interview detail by id
function gotoInterviewDetailById(ei_autoid){
	alert("建设中...");
	return;		 			
}

