			<!-- 					
				// new variable to handle long event names
				var maxNameLength = 20;
			
				// EventKeeper first returns a javascript variable called fString for FeedString 
				// which tells us what varibles are returned. 
				// characters in the string can be: 
				// D : date 
				// T : time 
				// N : name 
				// 1 : keyword 1 
				// 2 : keyword 2 
				
				// EventKeeper has created an javascript array variable called evtArray
				// with fields = evt_date, evt_time, evt_name, evt_ID, evt_Key1 and evtKey2
				
				// for this example we write out the data from this array in a table.
				
				// outer table
				document.write("<table width='187' cellspacing='0' cellpadding='0' border='0'>");
				document.write("<tr><td width='10' align='left' valign='top'><img src='gfx/px.gif' width='10' height='1' alt='' border='0'></td><td align='left' valign='top'>");
				document.write("<br><span class='event_header'>UPCOMING EVENTS</span></td><td width='10' align='left' valign='top'><img src='gfx/px.gif' width='10' height='1' alt='' border='0'></td></tr>");
				document.write("<tr><td colspan='3' width='187' height='3' align='left' valign='top'><img src='gfx/px.gif' width='1' height='3' alt='' border='0'></td></tr>");
				document.write("<tr><td width='10' align='left' valign='top'><img src='gfx/px.gif' width='10' height='1' alt='' border='0'></td><td align='left' valign='top'>");
				
				// inner table with event data
				document.write("<table width='167' cellspacing='0' cellpadding='0' border='0'>");
				
				// loop through the array, creating a table row for each row in the array.
				for (i=0; i<evtArray.length; i++)
				{
					document.write("<tr>");
					
					// displaying event name cell
				
					if (FeedString.indexOf("N") != -1)
					{
						{
							// handle long event names
							var theName = evtArray[i][evt_name];
							if (theName.length > maxNameLength)
								theName = theName.substring(0,maxNameLength-2) + '...';
								
							// create the hyperlink based on the Event Name and the Event ID
							
							var linkurl = 'http://www.eventkeeper.com/code/events.cfm?curOrg=epwc';
							
							linkurl += "#" + evtArray[i][evt_id];
							var namelink = '<a href="' + linkurl + '"  class="event_link" target="_blank" title="';
							namelink += evtArray[i][evt_name] + '">' + theName + '</a>';
							
							document.write("<td align='left' valign='top'>" + "<span class='event'>" + evtArray[i][evt_date] + "</span><br>" + namelink + "</td>");
						}
					}					
					
					// displaying event time cell
					
					if (FeedString.indexOf("T") != -1)
						document.write("<td align='right' valign='top'>" + "<span class='event'>" + evtArray[i][evt_time] + "</span>"  + "</td>");
						
						// displaying rows between events					
						document.write("<tr><td colspan='2' width='167' height='3' align='left' valign='top'><img src='gfx/px.gif' width='1' height='3' alt='' border='0'></td></tr>");
					
					// since I don't know currently how those variables look like, before including them, design should be reviewed					
					// if (FeedString.indexOf("1") != -1)
					// 	document.write("<td>" + evtArray[i][evt_key1] + "</td>");	
					// if (FeedString.indexOf("2") != -1)
					// 	document.write("<td>" + evtArray[i][evt_key2] + "</td>");
	
					document.write("</tr>");
				}	
				document.write("</table></td><td width='10' align='left' valign='top'><img src='gfx/px.gif' width='10' height='1' alt='' border='0'></td></tr>");
				
				// if you would be so kind, please include a reference to EventKeeper

				document.write("<tr><td colspan='3' width='187' align='left' valign='top'><img src='gfx/px.gif' width='1' height='3' alt='' border='0'></td></tr>");
				document.write("<tr><td colspan='2' width='177' align='left' valign='top' bgcolor='#BFCFDF'><img src='gfx/px.gif' width='10' height='1' alt='' border='0'></td><td width='10' align='left' valign='top'><img src='gfx/px.gif' width='10' height='1' alt='' border='0'></td></tr>");
				
				var EKNOTICE = '<span class=event>Powered by </span>';
				EKNOTICE += '  <a href="http://www.eventkeeper.com" class="event_link" target="_blank">EventKeeper</a>';
				document.write("<tr><td width='10' align='left' valign='top'><img src='gfx/px.gif' width='10' height='1' alt='' border='0'></td><td align='right'>" + EKNOTICE + "&nbsp;&nbsp;" + "</td><td width='10' align='left' valign='top'><img src='gfx/px.gif' width='10' height='1' alt='' border='0'></td></tr>");
				document.write("<tr><td colspan='3' width='187' align='left' valign='top'><img src='gfx/px.gif' width='1' height='3' alt='' border='0'></td></tr>");				
				// close the table tag
				document.write("</table>");
			//-->
