// JavaScript Document
function openPicture(imageName,imageWidth,imageHeight) {
	newWindow = window.open("","newWindow","width="+(imageWidth + 50)+",height="+(imageHeight + 30)+",left=10,top=10,scrollbars=yes");
	newWindow.document.open();
	newWindow.document.write('<html>\n<title>Universit&agrave; di Catania - L\'Agenda</title>\n<body bgcolor="#EE9606" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">\n'); 
	newWindow.document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">\n<tr><td align="center" valign="middle"><img src="'+imageName+'" width="'+imageWidth+'" height="'+imageHeight+'"></td></tr>\n</table>\n'); 
	newWindow.document.write('</body>\n</html>');
	newWindow.document.close();
	newWindow.focus();
}

function stampa_testo(s_url) {
	window.open( s_url, 'stampa','width=540,height=520,scrollbars=yes,resizable=no');
}
