var activa = 0;

if (activa == 1) {

	Shadowbox.init({
		// let's skip the automatic setup because we don't have any
		// properly configured link elements on the page
		skipSetup: true,
		// include the html player because we want to display some html content
		players: ["iframe"]
	});
	
	window.onload = function(){
	
		// open a welcome message as soon as the window loads
		Shadowbox.open({
			content:'empresa/callcenter-no-disponible.html',
			player:     "iframe",
			title:      "",
			height:     350,
			width:      650,
			modal:   true
		});
	
	};

}
