
var flashvars = {
	//header:ENTREPRISE_HEADER,
	timing: 25000,
	server: ""
};
var params = {
	wmode:"transparent"
};
var attributes = {
	id:"pubs_entreprises"
};

swfobject.embedSWF("/flash/pubs.swf", "moveable", "1000", "365", "9.0.0","/flash/expressInstall.swf", flashvars, params, attributes);

var shown = false;
var interval;
var showPub = function(image){

	if(!shown){
		var imagePath = "/images/dynamics/largepub/";
		var pic = image.split("/");
		image = imagePath + pic.pop();
		
		shown = true;
		Slimbox.open(image);
		
		interval = setInterval(function(){
		
			if(	$chk($("lbImage")) && 
				$("lbImage").getStyle("display") == "none"){
				
				shown = false;
				clearInterval(interval);
			}
		
		},1000);
		
	}
}