// JavaScript Document

function zoomMaxi(immagine){
	i1 = new Image;
	i1.src = immagine;
	html = '<html>\n<head>\n<title>Image</title>\n</head>\n<body leftmargin=0 marginwidth=0 topmargin=0 marginheight=0>\n<center><img src="'+immagine+'" border=0 name=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></center>\n</body>\n</html>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
};

function Dispositivo(skin)
 {
 var w = window.screen.availWidth - 10
 var h = window.screen.availHeight - 50
 opts = 'menubar=no,toolbar=no,location=no,scrollbars,resizable,width=' + w + ',height=' + h + ',left=0,top=0,status=yes';
 window.open('https://www.in-bank.net/banking?service=VibSwitch&_mode=RECREATE&_lang=IT&skin=' + skin, 'login', opts);
 };