// JavaScript Document
$(document).ready(function() {

		
	$('a.gotoflip').click(function(event){
			
		event.preventDefault();
		var haut=(screen.height-680)/2;
		var Gauche=(screen.width-650)/2;
		window.open($(this).attr('href'),'Folder',"top="+haut+",left="+Gauche+", menubar=no, location=no, status=no, scrollbars=yes, resize=no,  width=650, height=660");
			
	});
		
});
