// Calcul la dimension d'une nouvelle fenętre en fonction de la taille de l'écran
function set_win_size(direction)
{
	if (direction == 'width')
	return Math.floor(screen.width*0.75);
	else
		return Math.floor(screen.height*0.75);
}

//Ouvre le lien dans une nouvelle fenętre
function open_new_win(new_link)
{
	var new_options = 'width='+set_win_size('width')+', height='+set_win_size('height')+', resizable=yes, toolbar=yes, scrollbars=yes';
	window.open(new_link, '_blank', new_options);
}

