// Prevents website from being trapped in another website's frameset
if (window != top) {
	top.location.href = 'http://www.immanuelpca.org';
}

/* Check Client Browser Type */
isIE = 0;
isNC = 0;
isN6 = 0;
noSupport = 0;
if (document.all) {
	isIE = 1; // I.E.
} else if (document.layers) {
	isNC = 1; // Netscape Communicator
} else if (document.getElementById) {
	isN6 = 1; // Netscape 6
} else {
	noSupport = 1; // Unknown browser
}