function acrilico(n)
{
var H = (quadro[n][1] + 100)
var W = (quadro[n][0] + 50)
L = parseInt((window.screen.width - W) / 2);
T = parseInt((window.screen.height - H) / 2);

var PopWnd = window.open("", "TITOLO","left=" + L + ",top=" + T + ",width=" + W + ",height=" + H + ",toolbar=no,resizable=no,location=no,directories=no,status=no,menubar=no,scrollbars=no");

PopWnd.document.write('<html>'
					+'<head>'
					+'	<title>' + quadro[n][4] + '</title>'
					+'  <link rel="stylesheet" href="css/acrilico.css" type="text/css">'
					+'</head>'
					+'<body bgcolor="#959595" topmargin="2" leftmargin="0" marginheight="2" marginwidth="0">'
					+'<table cellspacing="0" cellpadding="0" border="0" align="center" width="100%">'
					+'	<tr>'	
					+'		<td><img src="img/blank.gif" width="1" height="20" alt="" border="0"></td>'
					+'	</tr>'
					+'	<tr>'	
					+'		<td align="center"><img src="img/quadro_'+ n +'.jpg" width="'+ quadro[n][0]+'" height="'+ quadro[n][1]+'" alt="" border="0"></td>'
					+'	</tr>'
					+'	<tr>'	
					+'		<td><img src="img/blank.gif" width="1" height="3" alt="" border="0"></td>'
					+'	</tr>'
					+'	<tr>'	
					+'		<td class="white10n" align="center">' + quadro[n][4] + '</td>'
					+'	</tr>'
					+'	<tr>'
					+'		<td class="white10n" align="center">' + quadro[n][5] + '</td>'
					+'	</tr>'
					+'		<td><img src="img/blank.gif" width="1" height="5" alt="" border="0"></td>'
					+'  <tr>'
					+'		<td align="center" bgcolor="#a5a5a5"><a href="javascript:window.close()">CHIUDI</a></td>'
					+'	</tr>'
					+'</table>'
					+'</body>'
					+'</html>');
PopWnd.document.close();
}

function acquerello(n)
{
var H = (acque[n][1] + 100)
var W = (acque[n][0] + 100)
L = parseInt((window.screen.width - W) / 2);
T = parseInt((window.screen.height - H) / 2);

var PopWnd = window.open("", "TITOLO","left=" + L + ",top=" + T + ",width=" + W + ",height=" + H + ",toolbar=no,resizable=no,location=no,directories=no,status=no,menubar=no,scrollbars=no");

PopWnd.document.write('<html>'
					+'<head>'
					+'	<title>' + acque[n][4] + '</title>'
					+'  <link rel="stylesheet" href="css/acrilico.css" type="text/css">'
					+'</head>'
					+'<body bgcolor="#959595" topmargin="2" leftmargin="0" marginheight="2" marginwidth="0">'
					+'<table cellspacing="0" cellpadding="0" border="0" align="center" width="100%">'
					+'	<tr>'	
					+'		<td><img src="img/blank.gif" width="1" height="20" alt="" border="0"></td>'
					+'	</tr>'
					+'	<tr>'	
					+'		<td align="center"><img src="img/acque_'+ n +'.jpg" width="'+ acque[n][0]+'" height="'+ acque[n][1]+'" alt="" border="0"></td>'
					+'	</tr>'
					+'	<tr>'	
					+'		<td><img src="img/blank.gif" width="1" height="3" alt="" border="0"></td>'
					+'	</tr>'
					+'	<tr>'	
					+'		<td class="white10n" align="center">' + acque[n][4] + '</td>'
					+'	</tr>'
					+'		<td><img src="img/blank.gif" width="1" height="5" alt="" border="0"></td>'
					+'  <tr>'
					+'		<td align="center" bgcolor="#a5a5a5"><a href="javascript:window.close()">CHIUDI</a></td>'
					+'	</tr>'
					+'</table>'
					+'</body>'
					+'</html>');
PopWnd.document.close();
}