function enviaAmigo(id){		
	var width, height, left, top;
	width = 360;
	height = 456;
	
	left=(screen.availWidth-width)/2;
	top=(screen.availHeight-height)/2;
	var vpopName = window.open('/publique/cgi/cgilua.exe/sys/start.htm?tpl=pop_indique.htm&sid='+ id, 'popAmigo', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}