
<!-- 

var newwindow;

function popup(url, width, height)
{
	newWindow = window.open(
		url,
		'giannipesticciopopup',
		'scrollbars=1, ' +
		'resizable=1, ' +
		'height=' + height + ', ' +  
		'width=' + width
	);
	
	if (window.focus) {
		newWindow.focus()
	}

	var doc = newWindow.document;	
	doc.title = "Gianni Pesticcio";
	
	/*
	doc.write('<html>');
		doc.write('<head>');
			doc.write('<title>Gianni Pesticcio</title>');
		doc.write('</head>');
		doc.write('<body>');
			doc.write('<img src="' + url + '"/>');
		doc.write('</body>');
	doc.write('</html>');
	*/
}

function popupHtml(url, width, height)
{
	newWindow = window.open(
		url,
		'giannipesticciopopup',
		'scrollbars=1, ' +
		'resizable=1, ' +
		'height=' + height + ', ' +  
		'width=' + width
	);
	
	if (window.focus) {
		newWindow.focus()
	}
}
-->