Shadowbox.init({
    // let's skip the automatic setup because we don't have any
    // properly configured link elements on the page
	language: 'ja',
	players: ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv']
    //skipSetup: true
});

function welcomeOpen(file, w, h) {
	window.onload = function() {
		var url = "welcomeAd/" + file;		
		Shadowbox.open({
			content:    url,
			player:     'img',
			height:     h,
			width:      w,
			options : {
				   overlayOpacity: '0.5',
				   handleOversize: 'resize'
			}
		});
		
		//setTimeout("Shadowbox.close()", 5000);
	};
}

