// Fonction pop-up vers pdf


function fullWin(name,url){
		
		// IE PC
		if((navigator.appName == "Microsoft Internet Explorer") && (navigator.platform != "MacPPC"))
		{
		fenetre=window.open(url,name,'fullscreen=yes');
		}
		// safari mac
	
	
	
	
	else {
	height = screen.availHeight;
	width = screen.availWidth;
	
	
	try
	{
		tmp = window.open(url, null, "height=" + height + "px,width=" + width + "px,top=0,left=0,location=0,menubar=0,resizable=0,scrollbars=0,toolbar=0");
		tmp.resizeTo(width, height);
	} catch(e) {}
}

		
	}