var left
var top
var larghezza;
var altezza;
var url;
var win;
var name;

function popUpWindow(name,url,larghezza,altezza)
	{
	left = Math.floor((screen.width-larghezza)/2); 
	top = Math.floor((screen.height-altezza)/2); 
	if(win == null || win.closed)
		{
		win = window.open(url,name,"scrollbars=yes,status=yes,resizable=no,left=" + left + ",top=" + top + ",width=" + larghezza + ",height=" + altezza);
		win.focus();
		}
	else
		{
		win.close();
		win = window.open(url,name,"scrollbars=yes,status=yes,resizable=no,left=" + left + ",top=" + top + ",width=" + larghezza + ",height=" + altezza);
		}
	
	}

function popUpSoftFixWindow(name,url,larghezza,altezza)
	{
	left = Math.floor((screen.width-larghezza)/2); 
	top = Math.floor((screen.height-altezza)/2); 
	if(win == null || win.closed)
		{
		win = window.open(url,name,"scrollbars=no,status=no,resizable=no,left=" + left + ",top=" + top + ",width=" + larghezza + ",height=" + altezza);
		win.focus();
		}
	else
		{
		win.close();
		win = window.open(url,name,"scrollbars=no,status=no,resizable=no,left=" + left + ",top=" + top + ",width=" + larghezza + ",height=" + altezza);
		}
	
	}

function popUpRichWindow(name,url,larghezza,altezza)
	{
	left = Math.floor((screen.width-larghezza)/2); 
	top = Math.floor((screen.height-altezza)/2); 
	if(win == null || win.closed)
		{
		win = window.open(url,name,"menubar=yes,scrollbars=yes,status=yes,resizable=no,left=" + left + ",top=" + top + ",width=" + larghezza + ",height=" + altezza);
		win.focus();
		}
	else
		{
		win.close();
		win = window.open(url,name,"menubar=yes,scrollbars=yes,status=yes,resizable=no,left=" + left + ",top=" + top + ",width=" + larghezza + ",height=" + altezza);
		}
	
	}

function popUpRich2Window(name,url,larghezza,altezza)
	{
	left = Math.floor((screen.width-larghezza)/2); 
	top = Math.floor((screen.height-altezza)/2 - 60); 

	// alert(screen.width + "," + screen.height + " - " + left + "," + top);

	if(win == null || win.closed)
		{
		win = window.open(url,name,"toolbar=yes,menubar=no,scrollbars=yes,status=yes,resizable=yes,left=" + left + ",top=" + top + ",width=" + larghezza + ",height=" + altezza);
		win.focus();
		}
	else
		{
		win.close();
		win = window.open(url,name,"toolbar=yes,menubar=no,scrollbars=yes,status=yes,resizable=yes,left=" + left + ",top=" + top + ",width=" + larghezza + ",height=" + altezza);
		}
	
	}

function noop()
	{
	return;
	}

