/* Used in an attempt to hide email address from spambots */
	var lhs = "mail";
	var rhs = "leedsquakers.org.uk";

	function norobots() 
	{
		document.write("<a href=\"mailto");
		document.write(":" + lhs + "@");
		document.write(rhs + "\">" + lhs + "@" + rhs + "<\/a>");
	}
	
	/* used to open popup windows for maps etc.. */
function openwindow(url,w,h)
{
window.open(url,"my_new_window","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+w+",height="+h);
}