
function SetQuestion(key){
	document.write("<a href='javascript:non()'><img src='"+applicationUrl+"question/Q.gif' border='0' onclick='ShowQuestion(\""+key+"\")' align='absmiddle'></a>");
}
function SetQuestionImg(key,img){
	document.write("<a href='javascript:non()'><img src='"+img+"' border='0' onclick='ShowQuestion(\""+key+"\")' align='absmiddle'></a>");
}


function ShowQuestion(key){
	Qshow.innerHTML=window[key];
	var tmp;
	Qtable.style.top=event.clientY-12+document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop;
	Qtable.style.left=event.clientX+document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft;
	Qtable.filters['alpha'].opacity=qStartAlpha;
	Qtable.style.display="block";
	ShowQuestionAlpha()
}

function ShowQuestionAlpha(){
	if (Qtable.filters['alpha'].opacity < qShowAlpha){
		Qtable.filters['alpha'].opacity+=qAlphainner;
		setTimeout("ShowQuestionAlpha()",30);
	}
}

function ShowQuestionXY(keyword,x,y){
if (document.all){
	Qshow.innerHTML=keyword;
	var tmp;

	Qtable.style.top=y+(document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop);
	Qtable.style.left=x+(document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft);
	//Qtable.filters['alpha'].opacity=qStartAlpha;
	Qtable.style.display="block";
	//ShowQuestionAlpha()
}
else
    alert(keyword)
}