//////////////////////////////////////////////////
//
//
//////////////////////////////////////////////////
	var indexWindow;

	function popupWindow(url,width,height)
	{
		var stringa = 'width='+width+',height='+height+',resizable=yes,scrollbars=yes';
		indexWindow = window.open(url,'',stringa);
		indexWindow.focus();
		indexWindowOpen = true;
	}


