function openShadowbox(content_in, player_in, title_in){
	Shadowbox.open({
		content: content_in,
		player: player_in,
		title: title_in
	});
}

Shadowbox.init({
	players: ["swf"]
});

/*
// Require that Prototype is available
if (typeof Prototype == "undefined") {
	alert("Shadowbox, as included, requires the Prototype javascript framework.\n\nPlease check that it is included.");
} else {
	document.observe("dom:loaded", Shadowbox.init);
}
*/
