$(document).ready(function() {
$('div.PrintSend a.Print').click(function()
	{
	if (navigator.appName=="Microsoft Internet Explorer") {
		if(IE6) {
	var Largeur = (getWindowSize()[0]-990)/2;
	var MainDiv = document.getElementById('Content');
		if(window.location !="http://www22.eif.org/index.htm" && window.location !="http://www22.eif.org/")
{
	var Article = document.getElementById('ArticleBody');
	MainDiv.style.marginLeft = 0+'px';
	Article.style.width = 650+'px';
		}
	}
	window.print(); 
	if(Largeur > 0) MainDiv.style.marginLeft = parseInt(Largeur)+'px';
} else 
	{
		window.print(); 

}
return false;
});
});