// JavaScript Document
	Shadowbox.loadSkin('classic', 'js/shadowbox/skin');
	Shadowbox.loadLanguage('en', 'js/shadowbox/lang');
	Shadowbox.loadPlayer(['flv', 'html', 'iframe', 'img', 'qt', 'swf', 'wmp'], 'js/shadowbox/player');
	
	window.onload = function(){
		Shadowbox.init();
	};
	function abrirSB(type, title, url, largura, altura)
	{
		  Shadowbox.init({skipSetup: true});
		  Shadowbox.open({player: type, title: title, content: url, width: largura, height: altura});
	};



