// JavaScript Document
Shadowbox.init({language:"it",players: ["flv", "html", "iframe", "img"]});

var openShadowbox = function(content, player, title, width, height){
    Shadowbox.open({
        content:    content,
        player:     player,
        title:      title,
		width:		width,
		height:		height,
		options:{overlayColor:"#09F",overlayOpacity: 0.6,fadeDuration: 0.90}	
    });
};
var openShadowboxb = function(content, player, title, width, height){
    Shadowbox.open({
        content:    content,
        player:     player,
        title:      title,
		width:		width,
		height:		height,
		options:{overlayOpacity: 0.6,fadeDuration: 0.90}	
    });
};
function splash(addresse){
	winext=window.open(addresse,'','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes');	
if (window.screen) {
    winext.window.moveTo(0,0);
    winext.window.resizeTo(screen.availWidth,screen.availHeight);
    winext.focus();
    }

};

