
function ViewPDF(cFile)
{
	var t, l, h, w;

	h = 450;
	w = 690;

	t = (screen.height - h) / 2;
	l = (screen.width - w) / 2;

	nuovaFinestra = window.open("","ViewPDF","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=" + w + ",height=" + h + ",left=" + l + ",top=" + t);
	nuovaFinestra.document.open("text/html");
	nuovaFinestra.document.write("<html><title>Download " + cFile + "</title><meta http-equiv='refresh' content='1;url=../NewsPDF/" + cFile + "'><body><table border='0' cellspacing='0' cellpadding='0' align='center' width='100%'><tr><td style='height:400px' align='center'><a href='' title='Chiudi' onclick='window.close();'><img src='IconFile/Chiudi.gif' border='0' alt='Chiudi'/></a></td></tr></table></body></html>");
	nuovaFinestra.document.close();
	nuovaFinestra.focus();
	
	return false;
}

function ShowPDF(cFile)
{
	var t, l, h, w;
	var cMsgOK = "<html><title>Download " + cFile + "</title><meta http-equiv='refresh' content='1;url=../NewsPDF/" + cFile + "'><body><table border='0' cellspacing='0' cellpadding='0' align='center' width='100%'><tr><td style='height:400px' align='center'><img src='Img/Loading.gif' border='0' alt='Download in Corso ...'/><br/><br/><a href='' title='Chiudi' onclick='window.close();'><img src='Img/Chiudi.gif' border='0' alt='Chiudi'/></a></td></tr></table></body></html>";
	var cMsgERR = "<html><title>Download PDF</title><body><table border='0' cellspacing='0' cellpadding='0' align='center' width='100%'><tr><td style='height:400px' align='center'><a href='' title='Chiudi' onclick='window.close();'><img src='Img/Chiudi.gif' border='0' alt='Chiudi'/></a></td></tr></table></body></html>";
	var cShowMSG = "";

	// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	h = 450; w = 690;

	t = (screen.height - h) / 2;
	l = (screen.width - w) / 2;
	// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

	// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	cShowMSG = cMsgOK
	if (cFile.length == 0) {cShowMSG = cMsgERR}
	// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

	nuovaFinestra = window.open("","ViewPDF","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=" + w + ",height=" + h + ",left=" + l + ",top=" + t);
	nuovaFinestra.document.open("text/html");
	nuovaFinestra.document.write(cShowMSG);
	nuovaFinestra.document.close();
	nuovaFinestra.focus();
	
	return false;
}




