	
	
		//***********************************************************************************************//
		//***																		     ***//
		//***		Name: /javascript/faqObject.js									     ***//
		//***																		     ***//
		//***		Description: Holds functionality for the DHTML on the FAQ page	     ***//
		//***																		     ***//
		//***																		     ***//
		//***********************************************************************************************//
		
		function FaqClass(num, q, a) {
			this.num = num;
			this.q = q;
			this.a = a;
		}
		
		FaqClass.prototype.drawQuestion = function() {
			return '\
				<tr>\
					<td  align="left" class="F1_S2_C1_T1_W2">'+this.num+'. </td>\
					<td  align="left"><a href="#" onClick="faqArray['+(this.num-1)+'].setQATable(\'QADIV\')">'+this.q+'</a></td>\
				</tr>\
			\n';
		}
		
		FaqClass.prototype.setQATable = function(qaDiv) {
			var tableString = new String();
			
			tableString = '\
				<table width="549" cellspacing="0" cellpadding="0" border="0">\
					<tr>\
						<td width="20" nowrap=""><img src="<%=assetsHostName%>/img/spacer.gif" width=20 height=1></td>\
						<td width="100%" nowrap=""></td>\
					</tr>\
					<tr>\
						<td valign=top class="F1_S2_C1_T1_W2" align="left">Q:</td>\
						<td valign=top class="F1_S2_C1_T1_W1" align="left">'+this.q+'</td>\
					</tr>\
					<tr>\
						<td valign=top class="F1_S2_C1_T1_W2" align="left">A:</td>\
						<td valign=top class="F1_S2_C1_T1_W1" align="left">'+this.a+'</td>\
					</tr>\
				</table>\
			\n';

			setStyle(qaDiv, tableString, "F1_S2_C1_T1_W1");
		} 

		
