function friendlyFullscreen(){

	var newWidth = screen.availWidth - 40;
	var newHeight = screen.availHeight - 60;
	
	if(newWidth > document.width+40   ||   newHeight > document.height+40){
		window.resizeTo(newWidth, newHeight);
		window.moveTo(20,20);
	}

}