function bindButton() {
	Event.observe($('logo'), 'click', fullSize);
	Event.observe($('entrer'), 'click', fullSize);
}

function fullSize(){
	x=screen.availWidth;
	y=screen.availHeight;
	if (navigator.appName == "Netscape"){
		var MachakFull=window.open('Data/home.html','lebenisterie','scrollbars=no,addressbar=no','width='+x+',height='+y+',top=0,right=0');
		MachakFull.moveTo(0,0);
		MachakFull.resizeTo(x,y);
	}
	else if (navigator.appName == 'Microsoft Internet Explorer') window.open('Data/home.html','lebenisterie','scrollbars=no,fullscreen=yes,addressbar=no');
}

Event.observe(window, 'load', bindButton);