

function getItem(posNum,stringVar,delimeter)
{
// set variables
stringVarLength = stringVar.length;
matches = 0;
prevPos = 0;
currentPos = -1;

// end if  if delimeter is at first character (nothing before that!)
if ( (posNum == 1) && (stringVar.charAt(0) == delimeter) )
	{ zResult = ""; }
else
{
// continue on, find position in string based on delimiter
	for (var P = 1; P <= stringVarLength; P++)
	{
		if (stringVar.charAt(P) == delimeter)
			{
				prevPos = currentPos;
				currentPos = P;
				matches = matches + 1;
			}
		if (matches == posNum) {break}
	}

	if (P > stringVarLength)
		{
			prevPos = currentPos;
			currentPos = (P - 1);
		}
	prevPos = prevPos + 1;

	position = stringVar.substring(prevPos,currentPos);
}

	return (position);
}




document.write('<table border="0" width="760" cellpadding="0" cellspacing="0"><tr><td align="left" colspan="6"><a href="/index.html"><img src="/images/g_int_topbar760.gif" width="760" height="61" border="0"><\/a><\/td><\/tr><tr><td align="left"><img src="/images/spacer.gif" border="0" width="280" height="20"><\/td>');

document.write('<td align="middle" width="120"><a href="how.shtml#joinnow"><img src="/images/head_joinnow.gif" width="100" height="20" border="0" alt="Join Now"><\/a><\/td>');
document.write('<td align="middle" width="160"><a href="/career_opportunities.jsp"><img src="/images/head_career.gif" width="140" height="20" border="0" alt="Career Opportunities"><\/a><\/td>');
document.write('<td align="middle" width="70"><a href="/contact.shtml"><img src="/images/head_contact.gif" width="62" height="20" border="0" alt="Contact"><\/a><\/td>');
document.write('<td align="middle" width="80"><a href="/sitemap.shtml"><img src="/images/head_sitemap.gif" width="63" height="20" border="0" alt="Site Map"><\/a><\/td>');
document.write('<td align="right" width="50"><a href="/index.html"><img src="/images/head_home.gif" width="44" height="20" border="0" alt="Home"><\/a><\/td>');

document.write('<\/tr><\/table>');