window.onload = function() {
	var anchors = document.getElementsByTagName("a"); 
	for (var i=0; i<anchors.length; i++) { 
	  var anchor = anchors[i];
  	if ((anchor.getAttribute("href") && anchor.getAttribute("rel") == "external"))
    	{
    		anchor.target = "_blank";}
		} 
}


function Ouvrir(uri){
	var hauteur=710;
	var largeur=850;
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2; 
	window.open(uri,'officelocation','top='+top+', left='+left+', height='+hauteur+', width='+largeur+', location=no , resizable=no , scrollbars=no, status=no, menubar=no, directories=no, toolbar=no');
}

function send(uri){
	var hauteur=300;
	var largeur=500;
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2; 
	window.open(uri,'sendwindow','top='+top+', left='+left+', height='+hauteur+', width='+largeur+', location=no , resizable=no , scrollbars=no, status=no, menubar=no, directories=no, toolbar=no');	
}
