function addbookmark(){
	var URL=self.location.href;
	var bookmarkurl=URL;
	var bookmarktitle="RCFr 2010"
		if (document.all)
		window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

function sendUrl(){ 
	url = window.location;
	titre = document.title;
	sujet = "Cette page peut vous interesser";
	window.location = "mailto:?subject="+sujet+"&body=Je vous recommande cette page : "+titre+" : "+url;
} 
function popup(l,h,url){
	hauteur=Math.round((screen.availHeight-h)/2);
	largeur=Math.round((screen.availWidth-l)/2);
	window.open(url, "site", "toolbar=0,location=0,directories=0,status=0, scrollbars=0,resizable=0,menubar=0,top="+hauteur+",left="+largeur+",width="+l+",height="+h);
}

function popImg(img,w,h) {
	newPop = window.open('','popup','width='+w+',height='+h+',scrollbars=no');
	ch = '<html><head><title>RCFr</title>';
	ch += '</head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="self.focus()" oncontextmenu="return false;"><img src="'+img+'" border="0" name="zoom"></body></html>';
	newPop.document.open();
	newPop.document.write(ch);
	newPop.document.close();
}


