// JavaScript Document

			
			function openShadowboxLink(page, width, height, title) {
				
				var oPopup = new Element("a", {"href": page,"title":title});
				
			//alert("Got to here");
				
				Shadowbox.setup(oPopup, {
					"displayNav": false,
					"width":        width + 'px',
					"height":       height + 'px'
				});
				
				Shadowbox.open(oPopup);
			}
