window.onload =function(){
showaskquestion();
showguide();
}
function showaskquestion()
{

	$.ajax({ url: "askquestion.php",
		
		success: function(html){		
			split_html = html.split('|');
			 document.getElementById("question_tag").innerHTML= split_html[0]; 
			 document.getElementById("answer_tag").innerHTML= split_html[1]; 
			 document.getElementById("customer").innerHTML= split_html[3];
			/* document.getElementById("questionpopup").innerHTML= split_html[0];
			 document.getElementById("answerpop").innerHTML= split_html[2];			 
			 document.getElementById("customer_pop").innerHTML= split_html[3]; 
			 document.getElementById("customer_pop01").innerHTML= split_html[3];*/
	}});

}

function showpopupdiv(){
	document.getElementById('popupdiv').style.display='block';
}
function closediv(){
	document.getElementById('popupdiv').style.display='none';
}


function showguide()
{

	$.ajax({ url: "guide.php",
		
		success: function(html){		
			split_html = html.split('|');
			 document.getElementById("question_guide").innerHTML= split_html[0]; 
			 document.getElementById("short_guide").innerHTML= split_html[1]; 
			 document.getElementById("feature_guide_question").innerHTML= split_html[0];
			 document.getElementById("feature_guide_answer").innerHTML= split_html[2];  
	}});

}

function showfeaturedpopupdiv(){
	alert("test");
	document.getElementById('popupdiv01').style.display='block';
}
function closefeatureddiv(){
	document.getElementById('popupdiv01').style.display='none';
}
