function goAbout()
{
	try
	{
		parent.location='about.html';
	}
	catch(err)
	{
	}
}

function goBev()
{
	try
	{
		parent.location='bev.html';
	}
	catch(err)
	{
	}
}

function goBevArticle(pYear, pMonth, pDay)
{
	try
	{
		tempFile = 'media/docs/bev/' + pYear + pMonth + pDay + 'bev.pdf';
		window.open (tempFile,"bevarticle");
	}
	catch(err)
	{
	}
}

function goChildrensMinistry()
{
	try
	{
		parent.location='cm.html';
	}
	catch(err)
	{
	}
}

function goContact()
{
	try
	{
		parent.location='contact.html';
	}
	catch(err)
	{
	}
}

function goContactMap()
{
	try
	{
		parent.location='contactmap.html';
	}
	catch(err)
	{
	}
}

function goFromTheElders()
{
	try
	{
		parent.location='fromelders.html';
	}
	catch(err)
	{
	}
}

function goFromTheEldersArticle(pYear, pMonth, pDay)
{
	try
	{
		tempFile = 'media/docs/elders/' + pYear + pMonth + pDay + 'elders.pdf';
		window.open (tempFile,"eldersarticle");
	}
	catch(err)
	{
	}
}

function goEvents()
{
	try
	{
		parent.location='events.html';
	}
	catch(err)
	{
	}
}

function goEventsCalendar()
{
	try
	{
		parent.location='events_calendar.html';
	}
	catch(err)
	{
	}
}

function goHome()
{
	try
	{
		parent.location='index.html';
	}
	catch(err)
	{
	}
}

function goMinistries()
{
	try
	{
		parent.location='ministries.html';
	}
	catch(err)
	{
	}
}

function goPublications()
{
	try
	{
		parent.location='publications.html';
	}
	catch(err)
	{
	}
}

function goSamePage()
{
	try
	{
		parent.location='#';
	}
	catch(err)
	{
	}
}

function goSermons()
{
	try
	{
		parent.location='sermons.html';
	}
	catch(err)
	{
	}
}

function goServants()
{
	try
	{
		parent.location='servants.html';
	}
	catch(err)
	{
	}
}

function goServantsDeacons()
{
	try
	{
		parent.location='servants.html#deacons';
	}
	catch(err)
	{
	}
}

function goServantsElders()
{
	try
	{
		parent.location='servants.html#elders';
	}
	catch(err)
	{
	}
}

function goServantsMinisters()
{
	try
	{
		parent.location='servants.html#ministers';
	}
	catch(err)
	{
	}
}

function goServantsStaff()
{
	try
	{
		parent.location='servants.html#staff';
	}
	catch(err)
	{
	}
}

function goYouth()
{
	try
	{
		parent.location='youth.html';
	}
	catch(err)
	{
	}
}

function goYouthCalendar()
{
	try
	{
		parent.location='youth_calendar.html';
	}
	catch(err)
	{
	}
}

