// PrintPopup
// ----------------------------------------------------
PrintPopup = null;
function Printer(url, width, height, resizable)
{
	width = width || 710;
	height = height || 500;
	resizable = resizable || "no";
	var left=(window.screen.availWidth-10-width)/2;
	if (window.screen.availHeight<600) {
		var top=0;
	} else {
		var top=(window.screen.availHeight-55-height)/2;
	}
	if (PrintPopup!=null) 
	{
		if (typeof(PrintPopup.PrintClose)=="function")
		{
			PrintPopup.close();
		}
		//setTimeout('DialogOpen(\''+url+'\','+top+','+left+','+width+','+height+','+resizable+');',100);
		PrintOpen(url,top,left,width,height,resizable);		
	}
	else
	{
		PrintOpen(url,top,left,width,height,resizable);
	}
}
function PrintOpen(url, top, left, width, height, resizable)
{
	PrintPopup = window.open(url, 'PopupDialog', 'width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=no,menuBar=no,scrollBars=yes,resizable='+resizable+',top='+top+',left='+left);
}
function PrintClose()
{
	if (confirm("Le modifiche andranno perse.\n\nContinuare?"))
	{
		self.close();
	}
}
