// JavaScript Document
function fullScreen(pagina) {
if (navigator.appName == "Microsoft Internet Explorer"){ // better be ie6 at least
window.open(pagina, '', 'fullscreen=yes, scrollbars=auto, resizable=yes').focus();
}
else { // i.e. if Firefox
window.open(pagina, '', 'width=' + (screen.width-5) + ',height=' + (screen.height-30) + ', scrollbars=auto, resizable=yes, ').focus();
}
}

