<!-- Begin

function DisplayPosition(Position,listType){

	var text = "" ;
	var on = "" ;
	var off = "" ;

	document
<!-- Heading if a list is to be displayed -->
	if (listType == "list"){
		text = "<table border='0' cellspacing='2' cellpadding='3' class='calendar'>" ;
		text += "<tr><td align='center' class='calendarName' colspan='6'>" ;
		text += DataInfo[1] + " " + DataInfo[0] ;
		text += "</td></tr>" ;
		if (DataInfo[2].length > 0){
			text += "<tr><td align='center' colspan='6'>" + DataInfo[2] + "</td></tr>" ;
		}
		document.write(text);
	}

	for (var app = 0 ; app < Hashers.length ; app ++)
	{
		if ((Hashers[app][0] == Position && listType == "contact") || (listType == "list"))
		{
			if (listType == "contact")
			{
				text = Hashers[app][1] + "<br>" ;
				text += '<a href="mailto:' ;
				text += Hashers[app][3]+String.fromCharCode(32*2)+Hashers[app][4] ;
				text += '">' + Hashers[app][2] + '</a>' + "<br>";
				text += Hashers[app][5] ;
			}
			else
			{
				if (Math.floor(app/2) == (app/2))
				{
					text = "<tr bgcolor='#EBEBEB'>";
				}
				else
				{
					text = "<tr>" ;
				}
				if (Hashers[app][5] == "Cancelled")
				{
					on = "<strike>" ;
					off = "</strike>" ;
				}
				else
				{
					on = "" ;
					off = "" ;
				}
				text += "<td>" + Hashers[app][1] + "</td>" ;
				text += "<td>" + "<a href='mailto:" + Hashers[app][3]+String.fromCharCode(32*2)+Hashers[app][4] + "'>" + Hashers[app][2] + "</a></td>" ;
				text += "<td align='center'><img width=" + ImageHeight + " border=0 src='" + Hashers[app][6] + "'></td>" ;
				text += "<td>" + Hashers[app][5] + "</td>" ;
				text += "</tr>" ;
			}
			document.write(text);
		}
		else{
			if (Hashers[app][0] == Position && listType == "name")
			{
				text += '<a href="mailto:' ;
				text += Hashers[app][3]+String.fromCharCode(32*2)+Hashers[app][4] ;
				text += '">' + Hashers[app][2] + '</a>';
				document.write(text);
			}
		}
	}
	if (listType == "list"){
		document.write("</table>");
	}
	
}

//  End -->
