	function m2_ConfirmDelete(strURL)
	{
		var blnDelete
		
		blnDelete = window.confirm('Are you sure you want to delete this item?  Click OK to delete or Cancel to abort.');
		
		if (blnDelete == true)
		{
			window.navigate(strURL);
		}
	}
	
		function m2_Popup(strURL,intWidth,intHeight)
		{
			var intTop
			var intLeft
			
			intTop = Math.round((window.screen.availHeight - intHeight) / 2);
			intLeft = Math.round((window.screen.availWidth - intWidth) / 2);
			
			DispWin = window.open(strURL,'','titlebar=no,toolbar=no,status=no,menubar=no,top=' + intTop +',left=' + intLeft +',width=' + intWidth + ',height=' + intHeight);
		}

		function m2_NewWindow(strURL,intWidth,intHeight,intTop,intLeft)
		{
			DispWin = window.open(strURL,'','titlebar=no,toolbar=no,status=no,menubar=no,top=' + intTop +',left=' + intLeft +',width=' + intWidth + ',height=' + intHeight);
		}

		function m2_NewWindowScroll(strURL,intWidth,intHeight)
		{
			var intTop
			var intLeft
			
			intTop = Math.round((window.screen.availHeight - intHeight) / 2);
			intLeft = Math.round((window.screen.availWidth - intWidth) / 2);
			
			DispWin = window.open(strURL,'','titlebar=no,toolbar=no,status=no,menubar=no,scrollbars=yes,top=' + intTop +',left=' + intLeft +',width=' + intWidth + ',height=' + intHeight);
		}

		function m2_SetWinPos(intWidth,intHeight,intTop,intLeft)
		{
			self.resizeTo(intWidth,intHeight);
			self.moveTo(intTop,intLeft);
		}

