
		var height	= '';
		var width	= '';
		
		var Ampli	= 1.1;
		
		var ValeurHaut	= 0;
		var ValeurLarg	= 0;
		
		var ValueORDO	= 3;
        
		function init(NewValueORDO) {

		  ValueORDO = NewValueORDO;
          setTimeout("change()",1000);
		   //alert(document.getElementById("ListSponsor").style.marginTop);
		   //alert(parseInt(document.getElementById("POPin").style.height));
         }
        function change() {
			
			
           document.getElementById("POPin").style.display = "block";
		   
          if(parseInt(document.getElementById("POPin").style.width)<100){
		  
		  	  
		  
             height = parseInt(document.getElementById("POPin").style.height);
			 ValeurHaut = ((height+1)*Ampli)+"%";

			 
			 if(parseInt(ValeurHaut)<100)	{	document.getElementById("POPin").style.height = ValeurHaut;	}
			 else							{	document.getElementById("POPin").style.height = "100%";	}
			 
			 
			 
			 width = parseInt(document.getElementById("POPin").style.width);
			 ValeurLarg = ((width+1)*Ampli)+"%";

			 if(parseInt(ValeurLarg)<100)	{	document.getElementById("POPin").style.width = ValeurLarg;	}
			 else							{	document.getElementById("POPin").style.width = "100%";	
			 									document.getElementById("BigerAl").style.display = "block";
												document.getElementById("GlobalAlbum").style.display = "block";
												
											}
			
             
           	setTimeout("change()",0.1);//1000=1s
			
		   }
		   else{ 
			   var DivAlbumGp	= document.getElementById("BigerAl");
			   DivAlbumGp.style.display = "block"; 
			   
			   
			   var GrosSwf2='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="900" height="720" id="Module-Albums-PopIn" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="allowFullScreen" value="false" /><param name="flashvars" value="Ordo='+ ValueORDO+'"><param name="movie" value="Module-Albums-PopIn.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" />	<embed src="Module-Albums-PopIn.swf" quality="high" wmode="transparent" bgcolor="#ffffff"flashvars="Ordo='+ ValueORDO+'" width="900" height="720" name="Module-Albums-PopIn\" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer\" /></object>';
			
			   
			   DivAlbumGp.innerHTML= GrosSwf2;
			   
			   
			   
			   
			   
			   
			   
			   
			   
			   
		   }
         }
		 
		 function Mask() {
           
          
			 document.getElementById("POPin").style.height = "25%";
			 document.getElementById("POPin").style.width  = "25%";

		     var DivAlbumGpe	= document.getElementById("BigerAl");
			     DivAlbumGpe.style.display = "none"; 
				 
			 var DivGlobale	= document.getElementById("GlobalAlbum");
				 DivGlobale.style.display = "none";
				 
			 var DivPopGpe	= document.getElementById("POPin");
			 	 DivPopGpe.style.display = "none";
				 
				 

         }

