function bookmarksite(title, url){
	if (document.all)
	window.external.AddFavorite(url, title);
	else if (window.sidebar)
	window.sidebar.addPanel(title, url, "")
	}
	
function NewWindow1(mypage,myname,w,h,scroll,pos){
	if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
	if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
	else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	win=window.open(mypage,myname,settings);}
	
function afficher(img,titre,desc)
		{
			if (document.layers)
				{var skn = eval(document.zone);}
			else
				{
					if (document.getElementById)
						{var skn= eval("document.getElementById('zone')");}
					else
						{if (document.all){var skn = eval(document.all.zone);}}
				}
				
				var content ="<b>"+titre+"</b><br>"+desc+"<br><br><center><img src='/admin_files/"+img+"' style='border:1px solid black' width='550'></center>";
				skn.innerHTML = content;
		}