
<!-- 

var newWindow = null;

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

	var doc = newWindow.document;	
	doc.title = "Gianni Pesticcio";
}

function popupHtml(url, width, height)
{
    if (newWindow) {
	    newWindow.close();
	    newWindow = null;
	}
		
	newWindow = window.open(
		url,
		'giannipesticciopopup',
		'scrollbars=1, ' +
		'resizable=1, ' +
		'toolbar = 0, ' +
		'height=' + height + ', ' +  
		'width=' + width
	);
}

function popupHtmlToolbar(url, width, height)
{
    if (newWindow) {
	    newWindow.close();
	    newWindow = null;
	}
		
	newWindow = window.open(
		url,
		'giannipesticciopopup',
		'scrollbars= true, ' +
		'resizable= true, ' +
		'toolbar = true, ' +
		'menubar = true, ' +
		'directories = true, ' +
		'height=' + height + ', ' +  
		'width=' + width
	);
}

-->