function PopulateQuestions( strCategory )
{
	var strExp, sHostScript;
	var i, nPos;

	for (i = 0; i < arrQuestion.length; i++)
	{
		strHostScript = document.location.href;
		nPos = strHostScript.lastIndexOf ("/");
		strHostScript = strHostScript.substr(0,nPos);
		strExp = "<tr>\n";
		strExp += "<td align=left style='padding: 3;' bgcolor='White'>\n";
		//strExp += "<a class='curlinks' href='javascript: displayQA(\"" + strHostScript + "/" + strCategory + "/QA" + (i+1) + ".htm\")'>";
		
		strExp += "<a class='curlinks' href='" + strHostScript + "/" + strCategory + ".asp?" + "QA=" + (i+1) + "'>";
		
		
		strExp += "Q" + (i+1) + ".&nbsp;&nbsp;" + arrQuestion[i] + "</a>\n</td>";
		strExp += "</tr>\n";
		document.write (strExp);
	}
}

function displayQA( strUrl )
{
	var sFeature = "titlebar=yes,scrollbars=yes,fullscreen=no,resizable=yes,menubar=no,height=450,width=760";
	sFeature += ",left=" + (window.screenLeft+122) + ",top=" + (window.screenTop+85);
	
	var nQAWindow = window.open(strUrl, "_samsqa", sFeature );
	nQAWindow.focus();
}