function fullWin(name,url){
	// IE PC
	if((navigator.appName == "Microsoft Internet Explorer") && (navigator.platform != "MacPPC"))
	{
		
		fenetre=window.open(url,name,'fullscreen=yes,resizable=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,resizable=yes,location=0,menubar=0,scrollbars=0,toolbar=0");
			tmp.resizeTo(width, height);
		} catch(e) {}
	}
}



function initWindow(){
		self.moveTo(0,0);
		self.resizeTo(screen.availWidth,screen.availHeight);
		self.focus();
}