// JavaScript Document
function show(x)
	{
	document.getElementById(x).style.display="block";
	}
function hide(y)
	{
	document.getElementById(y).style.display="none";
	}	
function open_window(path){
	var image = path;
	window.open(image,"Welcome to Church Watch","menubar=no,width=460,height=360,toolbar=no,scrollbar=yes,resizable=yes");
}