function Bookmark(title,url) {
	if( window.external ) {
		window.external.AddFavorite( url, title );
	} else if( window.sidebar ) { window.sidebar.addPanel( title, url, "");  }
}


function HomePage(obj)
	{
	obj.style.behavior='url(#default#homepage)';
	obj.setHomePage('http://www.rainette.fr');
	}


function copyClipById(fieldID) {
	var obj=document.getElementById(fieldID);
	obj.select();
	obj.focus();
	try{
		therange=obj.createTextRange();
		therange.execCommand("Copy");
		window.status="Le code HTML selectionné a été copié dans le presse-papiers !";
		setTimeout("window.status=''",5000);
	}
	catch(e){
		window.status="Votre navigateur n'est pas soutenu !";
		setTimeout("window.status=''",5000);
	}
}