function view(id){
	url = 'view-doc.php?id=' + id + '';
	winwidth = screen.availWidth - 10;
	winheight = screen.availHeight - 30;
	window.open(url, '_blank', 'scrollbars=yes, width=' + winwidth + ', height=' + winheight + ', top=0, left=0, resizable');
}

function imprimer_la_page() {
	if (navigator.appVersion.indexOf("Mac",0)>0) {
		alert("Cette fonction n\'est pas réalisable sur Macintosh.\n\nUtilisez plutôt la combinaison de touches \"Pomme-P\"");
	} else { window.print(); }
}
