// JavaScript Document
// JUMP MENU - SELECT
function JumpSelect(links) {
   location.href = links[links.selectedIndex].value;
} 
//  Open Window - Centrata nella pagina 
function popup(mylink, windowname, w, h)
{
var winleft = (screen.width - w) / 2;
var winUp = (screen.height - h) / 2;
if (! window.focus)return true;
  var href;
  if(typeof(mylink) == 'string')
    href=mylink;
  else
    href=mylink.href;
    window.open(href, windowname, 'top='+((screen.height - h) / 2)+',left='+((screen.width - w) / 2)+'+,toolbar=0 status=1,resizable=0,Width='+ w +',height='+ h +',scrollbars=0');
return false;
}
// Incrementa i font
function setFontSize(value) {
	theStyle = null;
	if (value == "small") theStyle 	= "120%";
	if (value == "medium") theStyle 	= "80%";
	if (value == "large") theStyle 	= "100%";
	if (theStyle) 
		document.getElementsByTagName("body")[0].style.fontSize = theStyle;
}