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

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

function CenterWindow(){
window.moveTo((screen.width-1000)/2,((screen.height-560)/2)-50)
}

function CenterWindow430(){
window.moveTo((screen.width-1000)/2,((screen.height-560)/2)-20)
}