var pages = ['http://www.thecatholicguy.com/contact.html', 'http://www.thecatholicguy.com/privacy-policy.html'];
function go(pageIndex) {
	document.location = pages[pageIndex];
	return true;
}
function show(pageIndex) {
	if(pageIndex < 0) {
		window.status = ''; }
	else {
		window.status = pages[pageIndex]; }
	return true;
}