// JavaScript Document

/* Funzione stampa */

function PrintWindow(){
	window.print();
}

function FullScreen(){
	window.moveTo(0,0)
	window.resizeTo(screen.width,screen.height)
}