/*  
Script made by Martial Boissonneault © 2001-2003 http://getElementById.com/
This script may be used and changed freely as long as this msg is intact
Visit http://getElementById.com/ for more free scripts and tutorials.
*/
var win= null;
function NewWindow(mypage,myname,w,h,scroll){
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  var settings  ='height='+h+',';
      settings +='width='+w+',';
      settings +='top='+wint+',';
      settings +='left='+winl+',';
      settings +='scrollbars='+scroll+',';
      settings +='resizable=yes';
  win=window.open(mypage,myname,settings);
  if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}

function SwitchMenu(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("cont").getElementsByTagName("DIV");
		if(el.style.display == "none"){
			for (var i=0; i<ar.length; i++){
				ar[i].style.display = "none";
			}
			el.style.display = "block";
		}else{
			el.style.display = "none";
		}
	}
}
function ChangeClass(menu, newClass) { 
	 if (document.getElementById) { 
	 	document.getElementById(menu).className = newClass;
	 } 
}
function gohome(){
		window.location="http://www.christianfamilyhost.com";
}
function gocontact(){
		window.location="http://www.christianfamilyhost.com/contact.htm";
}
function gosearch(){
		window.location="http://www.christianfamilyhost.com/search.htm";
}
function gohelp(){
		window.location="http://www.christianfamilyhost.com/edge";
}
function goemploy(){
		window.location="http://www.christianfamilyhost.com/employment.htm";
}
function gomap(){
		window.location="http://www.christianfamilyhost.com/site_map.htm";
}
function golinks(){
		window.location="http://www.christianfamilyhost.com/elijah/";
}
function gotell(){
		window.location="http://www.christianfamilyhost.com/tell_friends.htm";
}
function gopersonal(){
		window.location="http://christianfamilyhost.com/william/signup.php?package=3";
}
document.onselectstart = new Function("return false");