// Ajout aux favoris
function favoris() {
	if ( navigator.appName != 'Microsoft Internet Explorer' ){ 
		window.sidebar.addPanel("le nom du site","http://www.tonsite.com",""); 
	}
	else { 
		window.external.AddFavorite("http://www.tonsite.com","le nom du site"); 
	} 
}

// Page de démarrage
function homepage(obj) {
	obj.style.behavior='url(#default#homepage)';
	obj.setHomePage('http://www.optimaldatacenter.fr');	
}

// Popup d'envoi à un ami
function PopAmi(Dossier, url){
	
    var haut=(screen.height-420)/2;
    var gauche=(screen.width-515)/2;
    popami=window.open('ami.php','popami','top='+haut+',left='+gauche+',toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=0, copyhistory=0, menuBar=0, width=515, height=420');
    if(popami.blur) popami.focus();
}
