function fullWin(name,url) {
	if((navigator.appName == "Microsoft Internet Explorer") && (navigator.platform != "MacPPC")){
		fenetre=window.open(url,name,'fullscreen=yes');
	} else {
		fenetre=window.open(url,name,'top=0,left=0,width='+screen.width +',height='+screen.height+',menubar=no,resize=no');
	}
	return true;
}
