function formFunction() {
	 		return new LightFace({
	 			title: 'Follow Us',
	 			content:'<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FZion-Lutheran-Church-School%2F209348212426731&amp;width=500&amp;height=558&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;stream=true&amp;header=false" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:558px;" allowTransparency="true"></iframe>',
				draggable: true
	 		}).addButton('Close', function() { light.close(); },true).open();
	 	}

	 	function termsFunction() {
	  		box = new LightFace({ 
	 			title: 'Follow Us', 
				width: 525,
				height: 575,
	  			content: '<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FZion-Lutheran-Church-School%2F209348212426731&amp;width=500&amp;height=558&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;stream=true&amp;header=false" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:558px;" allowTransparency="true"></iframe>',
	 			buttons: [
					{
						title: 'Close',
						event: function() { this.close(); }
					}
				]
	 		});
	 		box.open();		
	 	}
		/*
		window.addEvent('domready',function() {
			contextFace = new LightFace.Static({
				title: 'Context',
				content: 'Hello!',
				width: 80,
				height: 100
			});
			document.id('context-link').addEvent('click',function(e){
				if(e) e.stop();
				contextFace.open(false,e.page.x,e.page.y);
			});
			var closer = function(e) {
				var parent = document.id(contextFace).getParent('.lightface');
				if(e.target != parent && !parent.contains(e.target)) {
					contextFace.close();
				}
			};
			document.id(document.body).addEvent('click',closer);
		});
		*/
