			<!--
				var cooisIE4 = document.all? true : false;
				var isIE6 = document.getElementById && document.all ? true : false;
				var isNS4 = document.layers? true : false;
				var isNS6 = document.getElementById && !document.all ? true : false;

				function logout()
				{
				  input_box = confirm("Voulez-vous réellement mettre fin à votre session ?");
				  if ( input_box == true ) { 
				    location.href='index.php?logout=true';
				  }
				}
    		function popup( goto, w, h ) {
  				snv_popup = window.open( "popup.php?goto="+goto, "snv_popup",'width='+w+',height='+h+',left=100,top=100,toolbar=no,menubar=no,status=no,resizable=no,scrollbars=no');
				}
				function dl_video( video )
				{
						var w = 450;
						var h = 550;
						
						download = window.open( 'popup.php?goto=download_video&video='+video, 'snv_dl_'+video,'width='+w+',height='+h+',left=100,top=50,toolbar=no,menubar=no,status=no,resizable=no,scrollbars=no');
				}
				function check_allopass()
				{
						var code 	= document.allopass.code.value;
						var video	= document.allopass.video.value;
						refreshContentFromFile( "p_allopass", "pages/p_allopass.php?video=" + video + "&code=" + code );
				}

					var current_id 		= 1;
					var current_video = "";
					
					function animate( video )
					{
							current_id = 1;
							current_video = video;
							next_preview();
					}
					function next_preview()
					{
						if( current_video != "" && current_video != null && current_video != undefined )
						{
								current_id++;
								if( current_id > 4 ) current_id = 1;
								document.getElementById('preview_'+current_video).src = '/images/resize.php?W=160&H=120&i='+current_id+'&video='+current_video;
								setTimeout( 'next_preview()', 700 );
						}
					}
					function unanimate( video )
					{
							document.getElementById('preview_'+video).src = '/images/resize.php?W=160&H=120&i=1&video='+video;
							current_video = "";
					}
					
					function addbookmark(strDomainName)
					{
						bookmarkurl="http://www."+strDomainName;
						bookmarktitle="Welcome To "+strDomainName;
					
						if (window.sidebar)
						{ // Mozilla Firefox Bookmark
							window.sidebar.addPanel(bookmarktitle, bookmarkurl,"");
						}
						else if( window.external )
						{ // IE Favorite
							window.external.AddFavorite( bookmarkurl, bookmarktitle);
						}
						else if(window.opera && window.print)
						{ // Opera Hotlist
							return(true);
						}
						return(false);
					}
					
					function setAsHomePage(ctl, strDomainName)
					{
						bookmarkurl="http://www."+strDomainName;
					
						if( window.external )
						{ // IE
							ctl.style.behavior='url(#default#homepage)';
							ctl.setHomePage(bookmarkurl);
						}
						return(false);
					}

			-->